├── .gitignore ├── README.md └── workspace └── iw8 ├── code_source ├── external │ ├── crm │ │ └── src │ │ │ └── ingamestore │ │ │ ├── coroutine.cpp │ │ │ ├── coroutine.h │ │ │ ├── ingamestore.cpp │ │ │ ├── ingamestore_lua.cpp │ │ │ ├── ingamestore_utils.cpp │ │ │ └── ingamestore_xb3.cpp │ ├── dlog │ │ └── src │ │ │ └── dlog │ │ │ ├── dlog.cpp │ │ │ ├── dlog.h │ │ │ ├── dlog_context.cpp │ │ │ ├── dlog_context.h │ │ │ ├── dlog_endpoints.cpp │ │ │ ├── dlog_parse.cpp │ │ │ ├── dlog_serializers.cpp │ │ │ ├── dlog_socket.cpp │ │ │ ├── dlog_utils.cpp │ │ │ ├── miniz.c │ │ │ ├── nuhttp.cpp │ │ │ ├── numsgpack.cpp │ │ │ ├── numsgpack.h │ │ │ ├── nuprotobuf.cpp │ │ │ └── nuxxhash.cpp │ ├── flatbuffers │ │ └── include │ │ │ └── flatbuffers │ │ │ └── flatbuffers.h │ ├── luajit │ │ └── 2.1.0-beta3 │ │ │ └── src │ │ │ ├── lib_aux.c │ │ │ ├── lib_base.c │ │ │ ├── lib_bit.c │ │ │ ├── lib_debug.c │ │ │ ├── lib_init.c │ │ │ ├── lib_io.c │ │ │ ├── lib_jit.c │ │ │ ├── lib_math.c │ │ │ ├── lib_os.c │ │ │ ├── lib_package.c │ │ │ ├── lib_string.c │ │ │ ├── lib_table.c │ │ │ ├── lj_alloc.c │ │ │ ├── lj_api.c │ │ │ ├── lj_bcread.c │ │ │ ├── lj_bcwrite.c │ │ │ ├── lj_buf.c │ │ │ ├── lj_debug.c │ │ │ ├── lj_dispatch.c │ │ │ ├── lj_err.c │ │ │ ├── lj_func.c │ │ │ ├── lj_gc.c │ │ │ ├── lj_lex.c │ │ │ ├── lj_lib.c │ │ │ ├── lj_load.c │ │ │ ├── lj_meta.c │ │ │ ├── lj_obj.c │ │ │ ├── lj_parse.c │ │ │ ├── lj_profile.c │ │ │ ├── lj_state.c │ │ │ ├── lj_str.c │ │ │ ├── lj_strfmt.c │ │ │ ├── lj_strfmt_num.c │ │ │ ├── lj_strscan.c │ │ │ ├── lj_tab.c │ │ │ ├── lj_udata.c │ │ │ ├── lj_vmevent.c │ │ │ ├── lj_vmmath.c │ │ │ └── luaconf.h │ ├── luasocket │ │ └── src │ │ │ ├── auxiliar.c │ │ │ ├── buffer.c │ │ │ ├── except.c │ │ │ ├── inet.c │ │ │ ├── io.c │ │ │ ├── luasocket.c │ │ │ ├── options.c │ │ │ ├── select.c │ │ │ ├── tcp.c │ │ │ ├── timeout.c │ │ │ ├── udp.c │ │ │ └── wsocket.c │ ├── nujson │ │ ├── nubase64.cpp │ │ ├── nujson.cpp │ │ └── nujson.h │ ├── protobuf-c │ │ └── protobuf-c │ │ │ └── protobuf-c.c │ ├── xb3sdk │ │ └── xdk │ │ │ ├── include │ │ │ ├── cppwinrt │ │ │ │ └── winrt │ │ │ │ │ ├── base.h │ │ │ │ │ ├── microsoft.xbox.services.h │ │ │ │ │ ├── microsoft.xbox.services.marketplace.h │ │ │ │ │ ├── windows.foundation.h │ │ │ │ │ ├── windows.xbox.applicationmodel.store.h │ │ │ │ │ ├── windows.xbox.management.deployment.h │ │ │ │ │ └── windows.xbox.system.h │ │ │ ├── um │ │ │ │ ├── combaseapi.h │ │ │ │ ├── pix_etw.h │ │ │ │ ├── pixeventscommon.h │ │ │ │ ├── pixeventsgenerated.h │ │ │ │ └── shapexmacontext.h │ │ │ └── winrt │ │ │ │ └── wrl │ │ │ │ ├── client.h │ │ │ │ ├── implements.h │ │ │ │ └── wrappers │ │ │ │ └── corewrappers.h │ │ │ ├── ucrt │ │ │ └── inc │ │ │ │ ├── corecrt_stdio_config.h │ │ │ │ ├── corecrt_wstdio.h │ │ │ │ └── stdio.h │ │ │ └── vs2017 │ │ │ └── vc │ │ │ └── include │ │ │ ├── agile.h │ │ │ ├── algorithm │ │ │ ├── charconv │ │ │ ├── collection.h │ │ │ ├── exception │ │ │ ├── memory │ │ │ ├── mutex │ │ │ ├── pplcancellation_token.h │ │ │ ├── pplinterface.h │ │ │ ├── ppltasks.h │ │ │ ├── pplwin.h │ │ │ ├── stdexcept │ │ │ ├── string │ │ │ ├── system_error │ │ │ ├── utility │ │ │ ├── vccorlib.h │ │ │ ├── xlocnum │ │ │ ├── xmemory0 │ │ │ ├── xstring │ │ │ ├── xtree │ │ │ └── xutility │ └── xxhash-0.6.5 │ │ └── xxhash.c ├── libs │ ├── ddl │ │ └── src │ │ │ └── ddl │ │ │ ├── ddl_api.cpp │ │ │ ├── ddl_buffer.cpp │ │ │ ├── ddl_converter.cpp │ │ │ ├── ddl_header.cpp │ │ │ ├── ddl_lookup.cpp │ │ │ ├── ddl_transfer.cpp │ │ │ ├── ddl_utils.cpp │ │ │ └── ddl_xxhash.cpp │ ├── demonwareclient │ │ ├── bdauth │ │ │ ├── bdauth.cpp │ │ │ ├── bdauth.h │ │ │ ├── bdauthcommon.cpp │ │ │ ├── bdauthplatform │ │ │ │ ├── bdauthuserinfo-xboxone.cpp │ │ │ │ └── bdauthxboxone.cpp │ │ │ ├── bdauthticket.cpp │ │ │ └── bdhttpauthcommon.cpp │ │ ├── bdconnection │ │ │ ├── bdconnection.cpp │ │ │ ├── bdconnectionstatistics.cpp │ │ │ ├── bdconnectionstore.cpp │ │ │ ├── bdconnectionstoreconfig.cpp │ │ │ ├── bddispatch │ │ │ │ └── bddispatcher.cpp │ │ │ ├── bdloopbackconnection.cpp │ │ │ ├── bdloopbackconnection.h │ │ │ ├── bdmessage │ │ │ │ ├── bdmessage.cpp │ │ │ │ ├── bdmessage.h │ │ │ │ └── bdreceivedmessage.cpp │ │ │ ├── bdpacket │ │ │ │ ├── bdchunk.cpp │ │ │ │ ├── bdcookie.cpp │ │ │ │ ├── bdcookie.h │ │ │ │ ├── bdcookieackchunk.cpp │ │ │ │ ├── bdcookieackchunk.h │ │ │ │ ├── bdcookieechochunk.cpp │ │ │ │ ├── bdcookieechochunk.h │ │ │ │ ├── bddatachunk.cpp │ │ │ │ ├── bddatachunk.h │ │ │ │ ├── bdheartbeatackchunk.cpp │ │ │ │ ├── bdheartbeatackchunk.h │ │ │ │ ├── bdheartbeatchunk.cpp │ │ │ │ ├── bdheartbeatchunk.h │ │ │ │ ├── bdinitackchunk.cpp │ │ │ │ ├── bdinitackchunk.h │ │ │ │ ├── bdinitchunk.cpp │ │ │ │ ├── bdinitchunk.h │ │ │ │ ├── bdpacket.cpp │ │ │ │ ├── bdsackchunk.cpp │ │ │ │ ├── bdsackchunk.h │ │ │ │ ├── bdshutdownackchunk.cpp │ │ │ │ ├── bdshutdownackchunk.h │ │ │ │ ├── bdshutdownchunk.cpp │ │ │ │ ├── bdshutdownchunk.h │ │ │ │ ├── bdshutdowncompletechunk.cpp │ │ │ │ └── bdshutdowncompletechunk.h │ │ │ ├── bdunicastconnection.cpp │ │ │ ├── bdunicastconnection.h │ │ │ └── bdwindow │ │ │ │ ├── bdreliablereceivewindow.cpp │ │ │ │ ├── bdreliablereceivewindow.h │ │ │ │ ├── bdreliablesendwindow.cpp │ │ │ │ ├── bdreliablesendwindow.h │ │ │ │ ├── bdunreliablereceivewindow.cpp │ │ │ │ └── bdunreliablesendwindow.cpp │ │ ├── bdcore │ │ │ ├── bdcompression │ │ │ │ ├── bdcompression.cpp │ │ │ │ ├── bddeflate.inl │ │ │ │ └── bdinflate.inl │ │ │ ├── bdcontainers │ │ │ │ ├── bdarray.h │ │ │ │ ├── bdarray.inl │ │ │ │ ├── bdbitbuffer.cpp │ │ │ │ ├── bdbitbuffer.h │ │ │ │ ├── bdbitbuffer.inl │ │ │ │ ├── bdbytebuffer.cpp │ │ │ │ ├── bdbytebuffer.h │ │ │ │ ├── bdbytebuffer.inl │ │ │ │ ├── bdfastarray.inl │ │ │ │ ├── bdfixedarray.inl │ │ │ │ ├── bdhashmap.h │ │ │ │ ├── bdhashmap.inl │ │ │ │ ├── bdlinkedlist.h │ │ │ │ ├── bdlinkedlist.inl │ │ │ │ ├── bdqueue.inl │ │ │ │ ├── bdsequencenumber.cpp │ │ │ │ ├── bdsequencenumberstore.cpp │ │ │ │ ├── bdsingleton.h │ │ │ │ └── bdsingleton.inl │ │ │ ├── bdcore.cpp │ │ │ ├── bdcrypto │ │ │ │ ├── bdauthenticationtag.cpp │ │ │ │ ├── bdcryptoconfig.cpp │ │ │ │ ├── bdcryptoconfig.inl │ │ │ │ ├── bdcryptodynamic.cpp │ │ │ │ ├── bdcryptodynamic.h │ │ │ │ ├── bdcryptoutils.cpp │ │ │ │ ├── bdcypher.cpp │ │ │ │ ├── bdcypher3des.cpp │ │ │ │ ├── bdcypher3des.h │ │ │ │ ├── bdcypheraes.cpp │ │ │ │ ├── bdcypheraes.h │ │ │ │ ├── bdcypheraesgcm.cpp │ │ │ │ ├── bdcypheraesgcm.h │ │ │ │ ├── bdcyphersuites.cpp │ │ │ │ ├── bdecckey.cpp │ │ │ │ ├── bdhash.cpp │ │ │ │ ├── bdhashmd5.cpp │ │ │ │ ├── bdhashmd5.h │ │ │ │ ├── bdhashsha1.cpp │ │ │ │ ├── bdhashsha1.h │ │ │ │ ├── bdhashsha256.cpp │ │ │ │ ├── bdhashsha256.h │ │ │ │ ├── bdhashsha384.cpp │ │ │ │ ├── bdhashsha384.h │ │ │ │ ├── bdhashsha512.cpp │ │ │ │ ├── bdhashsha512.h │ │ │ │ ├── bdhashtiger192.cpp │ │ │ │ ├── bdhashtiger192.h │ │ │ │ ├── bdhmac.cpp │ │ │ │ ├── bdhmacsha1.cpp │ │ │ │ ├── bdhmacsha1.h │ │ │ │ ├── bdhmacsha256.cpp │ │ │ │ ├── bdhmacsha256.h │ │ │ │ ├── bdhmacsha384.cpp │ │ │ │ ├── bdhmacsha384.h │ │ │ │ ├── bdhmacsha512.cpp │ │ │ │ ├── bdhmacsha512.h │ │ │ │ └── bdrsakey.cpp │ │ │ ├── bdmemory │ │ │ │ ├── bdalignedoffsetmemory.cpp │ │ │ │ ├── bdmallocmemory-std.cpp │ │ │ │ └── bdmemory.cpp │ │ │ ├── bdreference │ │ │ │ ├── bdreferencable.cpp │ │ │ │ ├── bdreference.h │ │ │ │ ├── bdreference.inl │ │ │ │ ├── bdwinrtptr.cpp │ │ │ │ └── bdwinrtptr.h │ │ │ ├── bdsocket │ │ │ │ ├── bdaddr.cpp │ │ │ │ ├── bdaddr.h │ │ │ │ ├── bdcommonaddr.cpp │ │ │ │ ├── bdcommonaddr.h │ │ │ │ ├── bdcommonaddrinfo.cpp │ │ │ │ ├── bdendpoint.cpp │ │ │ │ ├── bdmacaddr.cpp │ │ │ │ ├── bdrelayroute.cpp │ │ │ │ ├── bdsecurityid.cpp │ │ │ │ ├── bdsecurityinfo.cpp │ │ │ │ ├── bdsecuritykey.cpp │ │ │ │ ├── bdsocket.cpp │ │ │ │ ├── bdsocket.h │ │ │ │ └── bdstreamsocket.cpp │ │ │ ├── bdstring │ │ │ │ ├── bdstring.cpp │ │ │ │ └── bdstring.h │ │ │ ├── bdthread │ │ │ │ ├── bdlockguard.h │ │ │ │ ├── bdmutex.cpp │ │ │ │ ├── bdrunnable.cpp │ │ │ │ ├── bdsemaphore.cpp │ │ │ │ ├── bdsemaphore.h │ │ │ │ ├── bdsharedlockguard.h │ │ │ │ ├── bdsharedmutex.cpp │ │ │ │ ├── bdthread.cpp │ │ │ │ └── bdthread.h │ │ │ ├── bdtiming │ │ │ │ ├── bdbackofftimer.cpp │ │ │ │ ├── bdglobalstopwatch.cpp │ │ │ │ └── bdstopwatch.cpp │ │ │ └── bdutilities │ │ │ │ ├── bdalgorithms.h │ │ │ │ ├── bdbase64.cpp │ │ │ │ ├── bdbinascii.cpp │ │ │ │ ├── bdbitoperations.cpp │ │ │ │ ├── bdbytepacker.cpp │ │ │ │ ├── bdbytepacker.h │ │ │ │ ├── bdrandom.cpp │ │ │ │ ├── bdtokenbucket.cpp │ │ │ │ ├── bdtrulyrandom.cpp │ │ │ │ └── bdtrulyrandom.h │ │ ├── bddatachannel │ │ │ ├── bddatachannelbase.cpp │ │ │ ├── bddatachannelbase.h │ │ │ ├── bddatachanneldispatch │ │ │ │ └── bddatachanneldispatch.cpp │ │ │ ├── bddatachannelmanagerbase.cpp │ │ │ ├── bddatachannelmanagerstandard.cpp │ │ │ ├── bddatachannelmanagerstandard.h │ │ │ ├── bddatachannelstandard.cpp │ │ │ ├── bddatachannelstandard.h │ │ │ ├── bddatachanneltask.cpp │ │ │ ├── bddatachanneltask.h │ │ │ ├── bddatachanneluserinfo.cpp │ │ │ ├── bddatachanneluserinfo.h │ │ │ ├── bddatachannelutilities.cpp │ │ │ ├── bdgamemetrics │ │ │ │ ├── bdgamemetrics.cpp │ │ │ │ └── bdgamemetrics.h │ │ │ └── bdmessageenvelope.cpp │ │ ├── bdhttp │ │ │ ├── bddownloadinterceptor.cpp │ │ │ ├── bdhttp.cpp │ │ │ ├── bdhttp.h │ │ │ ├── bdhttpplatform │ │ │ │ ├── bdhttpcallbackhandler-xboxone.cpp │ │ │ │ ├── bdhttpchunked-xboxone.cpp │ │ │ │ ├── bdhttpclient-xboxone.cpp │ │ │ │ ├── bdhttpxboxone.cpp │ │ │ │ ├── bdhttpxboxone.h │ │ │ │ └── bdrequeststream-xboxone.cpp │ │ │ ├── bdhttputility.cpp │ │ │ └── bduploadinterceptor.cpp │ │ ├── bdjson │ │ │ ├── bdjsonarray.cpp │ │ │ ├── bdjsonarray.h │ │ │ ├── bdjsondeserializer.cpp │ │ │ ├── bdjsonobject.cpp │ │ │ ├── bdjsonobject.h │ │ │ ├── bdjsonserializer.cpp │ │ │ ├── bdjsonutility.cpp │ │ │ ├── bdjsonutility.h │ │ │ ├── bdjsonvalue.cpp │ │ │ └── bdjsonvalue.h │ │ ├── bdlobby │ │ │ ├── bdabtesting │ │ │ │ ├── bdabtesting.cpp │ │ │ │ ├── bdabtesting.h │ │ │ │ ├── bdabtestingclienttreatment.cpp │ │ │ │ ├── bdabtestingenrollment.cpp │ │ │ │ ├── bdabtestingenrollrequest.cpp │ │ │ │ ├── bdabtestingenrollresponse.cpp │ │ │ │ └── bdabtestingrequest.cpp │ │ │ ├── bdachievementsengine │ │ │ │ ├── bdachievementarchetypehandler.cpp │ │ │ │ ├── bdachievementarchetypeparameter.cpp │ │ │ │ ├── bdachievementarraymap.inl │ │ │ │ ├── bdachievementclient.cpp │ │ │ │ ├── bdachievementclient.h │ │ │ │ ├── bdachievementdefinition.cpp │ │ │ │ ├── bdachievementevent.cpp │ │ │ │ ├── bdachievementeventbatch.cpp │ │ │ │ ├── bdachievementeventbuffer.cpp │ │ │ │ ├── bdachievementperiod.cpp │ │ │ │ ├── bdachievementprogress.cpp │ │ │ │ ├── bdachievementprogresstarget.cpp │ │ │ │ ├── bdachievementrelativetimestamp.cpp │ │ │ │ ├── bdachievementschedule.cpp │ │ │ │ ├── bdachievementsenginerestcommon.cpp │ │ │ │ ├── bdachievementsengineservice.cpp │ │ │ │ ├── bdachievementsengineservice.h │ │ │ │ ├── bdachievementstate.cpp │ │ │ │ ├── bdachievementstate.h │ │ │ │ ├── bdachievementstatus.cpp │ │ │ │ ├── bdachievementsupdatedpushmessage.cpp │ │ │ │ ├── bdachievementtriggers.cpp │ │ │ │ ├── bdactivateachievementrequest.cpp │ │ │ │ ├── bddeactivateachievementrequest.cpp │ │ │ │ ├── bddeleteuserrequest.cpp │ │ │ │ ├── bdgetachievementdefinitionsrequest.cpp │ │ │ │ ├── bdgetachievementdefinitionsresponse.cpp │ │ │ │ ├── bdgetachievementstatesrequest.cpp │ │ │ │ ├── bdgetachievementstatesresponse.cpp │ │ │ │ ├── bdgetuserstaterequest.cpp │ │ │ │ ├── bdgetuserstateresponse.cpp │ │ │ │ ├── bdreporteventsrequest.cpp │ │ │ │ ├── bdreporteventsresponse.cpp │ │ │ │ ├── bdreportusereventsrequest.cpp │ │ │ │ ├── bdreportusereventsresponse.cpp │ │ │ │ └── bduserachievementevents.cpp │ │ │ ├── bdanticheat │ │ │ │ ├── bdanticheat.cpp │ │ │ │ ├── bdanticheat.h │ │ │ │ ├── bdanticheatchallenge.cpp │ │ │ │ ├── bdanticheatchallenge.h │ │ │ │ ├── bdanticheatchallengeparam.cpp │ │ │ │ ├── bdanticheatchallengeparam.h │ │ │ │ ├── bdanticheatchallenges.cpp │ │ │ │ ├── bdanticheatchallenges.h │ │ │ │ ├── bdanticheatresponses.cpp │ │ │ │ ├── bdconsoleid.cpp │ │ │ │ └── bdextendedauthinfo.cpp │ │ │ ├── bdcodo │ │ │ │ ├── bdcodo.cpp │ │ │ │ ├── bdcodo.h │ │ │ │ ├── bdcodoteammarketplace.cpp │ │ │ │ └── bdcodoteammarketplace.h │ │ │ ├── bdcontentstreaming │ │ │ │ ├── bdcontentstreaming.cpp │ │ │ │ ├── bdcontentstreaming.h │ │ │ │ ├── bdcontentstreamingbase.cpp │ │ │ │ ├── bdcshttpwrapper.h │ │ │ │ ├── bdcshttpwrapperimpl.cpp │ │ │ │ ├── bdcshttpwrapperimpl.h │ │ │ │ ├── bdfileid.cpp │ │ │ │ ├── bdfilemetadata.cpp │ │ │ │ ├── bdlivestreaminginterceptor.cpp │ │ │ │ ├── bdlivestreaminginterceptor.h │ │ │ │ ├── bdmultiparturl.cpp │ │ │ │ ├── bdprecopyresult.cpp │ │ │ │ ├── bdsummarymetahandler.cpp │ │ │ │ └── bdurl.cpp │ │ │ ├── bdcounter │ │ │ │ ├── bdcounter.cpp │ │ │ │ ├── bdcounter.h │ │ │ │ └── bdcountervalue.cpp │ │ │ ├── bdcrossplatformcommon │ │ │ │ └── bdcrossplatformusermetadata.cpp │ │ │ ├── bdcrossplatformfriends │ │ │ │ ├── bdcrossplatformfriends.cpp │ │ │ │ ├── bdcrossplatformfriends.h │ │ │ │ └── friends │ │ │ │ │ ├── bdcrossplatformfriend.cpp │ │ │ │ │ ├── bdcrossplatformfriendserroruser.cpp │ │ │ │ │ ├── bdcrossplatformfriendspushmessagehandler.cpp │ │ │ │ │ ├── bdcrossplatformfriendspushmessagehandler.h │ │ │ │ │ ├── bdgetfriendsrequest.cpp │ │ │ │ │ ├── bdgetfriendsresponse.cpp │ │ │ │ │ ├── bdgetpendingfriendsrequest.cpp │ │ │ │ │ ├── bdgetpendingfriendsresponse.cpp │ │ │ │ │ ├── bdrejectfriendrequest.cpp │ │ │ │ │ ├── bdrejectfriendresponse.cpp │ │ │ │ │ ├── bdsendfriendinvitationsrequest.cpp │ │ │ │ │ └── bdsendfriendinvitationsresponse.cpp │ │ │ ├── bdcrossplatformidentity │ │ │ │ ├── bdauthenticatecrossplatformuserrequest.cpp │ │ │ │ ├── bdauthenticatecrossplatformuserresponse.cpp │ │ │ │ ├── bdcrossplatformaccount.cpp │ │ │ │ ├── bdcrossplatformidentity.cpp │ │ │ │ ├── bdcrossplatformidentity.h │ │ │ │ ├── bdcrossplatformidentitymappeduser.cpp │ │ │ │ ├── bdcrossplatformidentitypushmessagehandler │ │ │ │ │ ├── bdcrossplatformidentitypushmessagehandler.cpp │ │ │ │ │ ├── bdcrossplatformidentitypushmessagehandler.h │ │ │ │ │ └── bdcrossplatformidentitypushmessages.cpp │ │ │ │ ├── bdcrossplatformlinkuserrequest.cpp │ │ │ │ ├── bdcrossplatformlinkuserresponse.cpp │ │ │ │ ├── bdcrossplatformuser.cpp │ │ │ │ ├── bdcrossplatformuser.h │ │ │ │ ├── bdenablecrossplatformprogression.cpp │ │ │ │ ├── bdenablecrossplatformprogression.h │ │ │ │ ├── bdgetcrossplatformuseridsrequest.cpp │ │ │ │ ├── bdgetcrossplatformuseridsresponse.cpp │ │ │ │ ├── bdgetcrossplatformuseridsresponse.h │ │ │ │ ├── bdgetcrossplatformusernamesrequest.cpp │ │ │ │ ├── bdgetcrossplatformusernamesresponse.cpp │ │ │ │ ├── bdgetcrossplatformusernamesresponse.h │ │ │ │ ├── bdgetcrossplatformusersearchrequest.cpp │ │ │ │ ├── bdgetcrossplatformusersearchresponse.cpp │ │ │ │ ├── bdgetcrossplatformusersearchresponse.h │ │ │ │ ├── bdgetplatformuseridsrequest.cpp │ │ │ │ ├── bdgetplatformuseridsresponse.cpp │ │ │ │ ├── bdgetplatformuseridsresponse.h │ │ │ │ ├── bdloginandlink.cpp │ │ │ │ ├── bdloginandlink.h │ │ │ │ ├── bdrenamecrossplatformuserrequest.cpp │ │ │ │ ├── bdrenamecrossplatformuserresponse.cpp │ │ │ │ ├── bdrenamecrossplatformuserresponse.h │ │ │ │ ├── bdupgradeanonunoaccrequest.cpp │ │ │ │ ├── bdupgradeanonunoaccresponse.cpp │ │ │ │ ├── bdupgradeanonunoaccresponse.h │ │ │ │ ├── bdupgradeanonymoustofull.cpp │ │ │ │ ├── bdupgradeanonymoustofull.h │ │ │ │ ├── bdupgradeumbrellarequest.cpp │ │ │ │ └── bdupgradeumbrellaresponse.cpp │ │ │ ├── bdcrossplatformpresence │ │ │ │ ├── bdcrossplatformpresence.cpp │ │ │ │ ├── bdcrossplatformpresence.h │ │ │ │ └── presence │ │ │ │ │ ├── bdcrossplatformpresencepushmessagehandler.cpp │ │ │ │ │ ├── bdcrossplatformpresencepushmessagehandler.h │ │ │ │ │ ├── bdgetuserspresencerequestv3.cpp │ │ │ │ │ ├── bdgetuserspresenceresponsev3.cpp │ │ │ │ │ ├── bdpresencedata.cpp │ │ │ │ │ ├── bdsetuserpresencerequestv3.cpp │ │ │ │ │ ├── bdsetuserpresenceresponse.cpp │ │ │ │ │ ├── bdsubscribetouserspresencerequestv3.cpp │ │ │ │ │ ├── bdsubscribetouserspresenceresponsev3.cpp │ │ │ │ │ ├── bdunsubscribefromuserspresencerequest.cpp │ │ │ │ │ ├── bdunsubscribefromuserspresenceresponse.cpp │ │ │ │ │ ├── bduserpresence.cpp │ │ │ │ │ ├── bduserpresenceerror.cpp │ │ │ │ │ ├── bduserpresenceinfo.cpp │ │ │ │ │ ├── bduserpresenceinfov3.cpp │ │ │ │ │ └── bduserpresencev3.cpp │ │ │ ├── bdcrossplatformuserlists │ │ │ │ ├── bdcrossplatformuserlists.cpp │ │ │ │ ├── bdcrossplatformuserlists.h │ │ │ │ └── userlists │ │ │ │ │ ├── bdcreateuserlistrequest.cpp │ │ │ │ │ ├── bdcreateuserlistresponse.cpp │ │ │ │ │ ├── bdgetuserlistrequest.cpp │ │ │ │ │ ├── bdgetuserlistresponse.cpp │ │ │ │ │ ├── bdremoveusersfromuserlistrequest.cpp │ │ │ │ │ ├── bdremoveusersfromuserlistresponse.cpp │ │ │ │ │ ├── bdupdateusersinuserlistrequest.cpp │ │ │ │ │ ├── bdupdateusersinuserlistresponse.cpp │ │ │ │ │ ├── bduserlistentity.cpp │ │ │ │ │ └── bduserlistentitydata.cpp │ │ │ ├── bdcrosstitlelocalizedstrings │ │ │ │ ├── bdcrosstitlelocalizedstrings.cpp │ │ │ │ ├── bdcrosstitlelocalizedstrings.h │ │ │ │ └── localizedstrings │ │ │ │ │ └── bdlocalizationtoken.cpp │ │ │ ├── bdddl │ │ │ │ ├── bdddl.cpp │ │ │ │ └── bdddl.h │ │ │ ├── bddml │ │ │ │ ├── bddml.cpp │ │ │ │ ├── bddml.h │ │ │ │ └── bddmlinfo.cpp │ │ │ ├── bdesportsprovider │ │ │ │ ├── bdmlg.cpp │ │ │ │ └── bdmlg.h │ │ │ ├── bdeventlog │ │ │ │ ├── bdeventinfo.cpp │ │ │ │ ├── bdeventinfo.h │ │ │ │ ├── bdeventlog.cpp │ │ │ │ └── bdeventlog.h │ │ │ ├── bdfeatureban │ │ │ │ ├── bdfeatureban.cpp │ │ │ │ ├── bdfeatureban.h │ │ │ │ └── bdfeaturebaninfo.cpp │ │ │ ├── bdgroup │ │ │ │ ├── bdgroup.cpp │ │ │ │ └── bdgroup.h │ │ │ ├── bdkeyarchive │ │ │ │ ├── bdentityidkeyvaluetriplet.cpp │ │ │ │ ├── bdkeyarchive.cpp │ │ │ │ └── bdkeyarchive.h │ │ │ ├── bdlobbycommon │ │ │ │ ├── bdboolresult.cpp │ │ │ │ ├── bdbufferparams.cpp │ │ │ │ ├── bdbufferparams.inl │ │ │ │ ├── bdclienttransactionidhelper.cpp │ │ │ │ ├── bddemonatapushmessagecommon │ │ │ │ │ ├── bddemonatapushmessage.cpp │ │ │ │ │ └── bddemonatapushmessagehandler.h │ │ │ │ ├── bdenvironmentstring.cpp │ │ │ │ ├── bdhttpproxycommon │ │ │ │ │ ├── bdhttpproxyheader.cpp │ │ │ │ │ ├── bdhttpproxyrequest.cpp │ │ │ │ │ └── bdhttpproxyresponse.cpp │ │ │ │ ├── bdprotobufhelper.cpp │ │ │ │ ├── bdserializable.cpp │ │ │ │ ├── bdservice.h │ │ │ │ ├── bdstringformatting.inl │ │ │ │ ├── bdstringresult.cpp │ │ │ │ ├── bdstructbuffercommon.cpp │ │ │ │ ├── bdstructbuffercommon.h │ │ │ │ ├── bdstructbufferdeserializer.cpp │ │ │ │ ├── bdstructbufferdeserializer.inl │ │ │ │ ├── bdstructbufferdeserializerhelpers.h │ │ │ │ ├── bdstructbufferserializable.cpp │ │ │ │ ├── bdstructbufferserializer.cpp │ │ │ │ ├── bdstructbufferserializer.inl │ │ │ │ ├── bdstructfixedsizearray.inl │ │ │ │ ├── bdstructfixedsizestring.inl │ │ │ │ ├── bdstructoptionalobject.inl │ │ │ │ ├── bdtaskparams.cpp │ │ │ │ ├── bdtaskparams.inl │ │ │ │ ├── bdtaskresult.cpp │ │ │ │ ├── bdtaskresultprocessor.cpp │ │ │ │ ├── bduint64result.cpp │ │ │ │ ├── bduseraccountid.cpp │ │ │ │ ├── bduseraccountid.h │ │ │ │ ├── bduserdetails.cpp │ │ │ │ ├── bdvalidationtokenresult.cpp │ │ │ │ └── bdvalidationtokenresult.h │ │ │ ├── bdlobbyeventhandler.cpp │ │ │ ├── bdlobbyservice.cpp │ │ │ ├── bdlobbyservice.h │ │ │ ├── bdlobbyservicesconnectioninfo.cpp │ │ │ ├── bdlogin │ │ │ │ ├── bdcrossplatformaccountinfo.cpp │ │ │ │ ├── bdlogin.cpp │ │ │ │ ├── bdlogin.h │ │ │ │ ├── bdloginconfig.cpp │ │ │ │ ├── bdloginfailure.cpp │ │ │ │ ├── bdloginflow │ │ │ │ │ └── bdloginflow.cpp │ │ │ │ ├── bdloginresult.cpp │ │ │ │ ├── bdloginresult.h │ │ │ │ ├── bdloginresumeconfig.cpp │ │ │ │ ├── bdloginstatus.cpp │ │ │ │ ├── bdlogintask │ │ │ │ │ ├── bdlogintask.h │ │ │ │ │ ├── bdlogintaskauthenticate.cpp │ │ │ │ │ ├── bdlogintaskauthenticateunoaccount.cpp │ │ │ │ │ ├── bdlogintaskconnecttolsg.cpp │ │ │ │ │ ├── bdlogintaskcreateunoaccount.cpp │ │ │ │ │ ├── bdlogintaskcreateunoanonymousaccount.cpp │ │ │ │ │ ├── bdlogintaskfetchunoaccount.cpp │ │ │ │ │ ├── bdlogintaskfetchxboxonetoken.cpp │ │ │ │ │ ├── bdlogintaskjoinqueue.cpp │ │ │ │ │ ├── bdlogintaskpollqueue.cpp │ │ │ │ │ ├── bdlogintaskreportextendedauthinfo.cpp │ │ │ │ │ ├── bdlogintaskumbrellacrossplay.cpp │ │ │ │ │ ├── bdlogintaskumbrellalegacylogin.cpp │ │ │ │ │ ├── bdlogintaskupdateunoaccount.cpp │ │ │ │ │ └── helpers │ │ │ │ │ │ ├── bdloginqueueutils.h │ │ │ │ │ │ └── bdloginutils.h │ │ │ │ └── bdplatformuser.cpp │ │ │ ├── bdloginqueuerecord.cpp │ │ │ ├── bdloginqueueticket.cpp │ │ │ ├── bdlootgeneration │ │ │ │ ├── bdlootgeneration.cpp │ │ │ │ ├── bdlootgeneration.h │ │ │ │ ├── bdlootgenerationopenlootdroprequest.cpp │ │ │ │ └── bdlootgenerationopenlootdropresponse.cpp │ │ │ ├── bdlsgservices │ │ │ │ ├── bdbandwidthtest.cpp │ │ │ │ └── bdbandwidthtestresults.cpp │ │ │ ├── bdmail │ │ │ │ ├── bdmail.cpp │ │ │ │ ├── bdmail.h │ │ │ │ ├── bdmailbody.cpp │ │ │ │ └── bdmailinfo.cpp │ │ │ ├── bdmarketingcomms │ │ │ │ ├── bdcommsgetmessagesrequest.cpp │ │ │ │ ├── bdcommsgetmessagesrequest.h │ │ │ │ ├── bdcommsgetmessagesresponse.cpp │ │ │ │ ├── bdcommsgetmessagesresponse.h │ │ │ │ ├── bdcommslocationcount.cpp │ │ │ │ ├── bdcommsmessage.cpp │ │ │ │ ├── bdcommsreportmessagesviewedrequest.cpp │ │ │ │ ├── bdcommsreportmessagesviewedresponse.cpp │ │ │ │ ├── bdcommsreportmessagesviewedresponse.h │ │ │ │ ├── bdcommsviewedmessage.cpp │ │ │ │ ├── bdmarketingcomms.cpp │ │ │ │ └── bdmarketingcomms.h │ │ │ ├── bdmarketplace │ │ │ │ ├── bdmarketplace.cpp │ │ │ │ ├── bdmarketplace.h │ │ │ │ ├── bdmarketplaceauditlog.cpp │ │ │ │ ├── bdmarketplacecouponinventory.cpp │ │ │ │ ├── bdmarketplacecouponinventoryv2.cpp │ │ │ │ ├── bdmarketplacecouponinventoryv3.cpp │ │ │ │ ├── bdmarketplacecouponinventoryv4.cpp │ │ │ │ ├── bdmarketplacecurrency.cpp │ │ │ │ ├── bdmarketplaceentitlement.cpp │ │ │ │ ├── bdmarketplaceexchangetransaction.cpp │ │ │ │ ├── bdmarketplaceinventory.cpp │ │ │ │ ├── bdmarketplaceinventoryv3.cpp │ │ │ │ ├── bdmarketplacemetadata.cpp │ │ │ │ ├── bdmarketplaceplayerassetsv3.cpp │ │ │ │ ├── bdmarketplaceplayercurrency.cpp │ │ │ │ ├── bdmarketplacesku.cpp │ │ │ │ ├── deprecated │ │ │ │ │ └── bdmarketplacedeprecated.cpp │ │ │ │ ├── marketplacestructclasses │ │ │ │ │ ├── bdbalanceupdatepushmessage.cpp │ │ │ │ │ ├── bdbnetreconciliation.cpp │ │ │ │ │ ├── bdgetinventoryiteminfo.cpp │ │ │ │ │ ├── bdgetinventoryiteminfo.h │ │ │ │ │ ├── bdgetplayerbalances.cpp │ │ │ │ │ ├── bdmarketplacecurrencyamount.cpp │ │ │ │ │ ├── bdmarketplaceinventoryiteminfov2.cpp │ │ │ │ │ ├── bdmarketplaceplayercurrencyv2.cpp │ │ │ │ │ ├── bdswitchreconciliation.cpp │ │ │ │ │ └── bdwegamereconciliation.cpp │ │ │ │ └── purchase │ │ │ │ │ ├── bdmarketplacepurchaseparamsbuilder.cpp │ │ │ │ │ ├── bdmarketplacepurchaseparamsbuilder.h │ │ │ │ │ ├── bdmarketplacepurchaseskusresult.cpp │ │ │ │ │ ├── bdmarketplacepurchaseskusresultv4.cpp │ │ │ │ │ ├── bdmarketplacepurchaseskusskuorder.cpp │ │ │ │ │ └── bdmarketplacepurchaseskusskuorderv2.cpp │ │ │ ├── bdmatchmaking │ │ │ │ ├── bdasyncmatchmaking.cpp │ │ │ │ ├── bdasyncmatchmaking.h │ │ │ │ ├── bdasyncmatchmakingeventhandler.cpp │ │ │ │ ├── bdasyncmatchmakingeventhandler.h │ │ │ │ ├── bdclientauthtokenresult.cpp │ │ │ │ ├── bddatacenterpreferences.cpp │ │ │ │ ├── bdlobbydocuments.cpp │ │ │ │ ├── bdmatchmaking.cpp │ │ │ │ ├── bdmatchmaking.h │ │ │ │ ├── bdpagingtoken.cpp │ │ │ │ ├── bdperformance.cpp │ │ │ │ ├── bdperformance.h │ │ │ │ ├── bdperformancevalue.cpp │ │ │ │ ├── bdsessionid.cpp │ │ │ │ └── bdsessioninvite.cpp │ │ │ ├── bdmatchscheduler │ │ │ │ ├── bdmatcheventinfo.cpp │ │ │ │ ├── bdmatchscheduler.cpp │ │ │ │ ├── bdmatchscheduler.h │ │ │ │ └── bdscheduledmatchinfo.cpp │ │ │ ├── bdmessaging │ │ │ │ ├── bdchannelcreatechannelresponse.cpp │ │ │ │ ├── bdchannelgetchannelsinforesponse.cpp │ │ │ │ ├── bdchannelgetmembersresponse.cpp │ │ │ │ ├── bdchannelinfo.cpp │ │ │ │ ├── bdchannelinfo.h │ │ │ │ ├── bdchannelmember.cpp │ │ │ │ ├── bdchannelmember.h │ │ │ │ ├── bdchannelrequest.cpp │ │ │ │ ├── bdchannelrequest.h │ │ │ │ ├── bdlobbymessagetype.cpp │ │ │ │ ├── bdmessaging.cpp │ │ │ │ ├── bdmessaging.h │ │ │ │ └── bdmessaginggroup.cpp │ │ │ ├── bdmw4 │ │ │ │ ├── bdclans │ │ │ │ │ ├── bdclansaddorupdategroupmemberrequest.cpp │ │ │ │ │ ├── bdclansaddorupdategroupmemberresponse.cpp │ │ │ │ │ ├── bdclanscreategrouprequest.cpp │ │ │ │ │ ├── bdclanseventhandler.cpp │ │ │ │ │ ├── bdclansfailedmembershipproposal.cpp │ │ │ │ │ ├── bdclansfailedmembershipproposal.h │ │ │ │ │ ├── bdclansgetgroupfilerequest.cpp │ │ │ │ │ ├── bdclansgetgroupfileresponse.cpp │ │ │ │ │ ├── bdclansgetgroupinfosrequest.cpp │ │ │ │ │ ├── bdclansgetgroupinfosresponse.cpp │ │ │ │ │ ├── bdclansgetgroupmembersrequest.cpp │ │ │ │ │ ├── bdclansgetgroupmembersresponse.cpp │ │ │ │ │ ├── bdclansgetmembershipproposalsbygrouprequest.cpp │ │ │ │ │ ├── bdclansgetmembershipproposalsbygroupresponse.cpp │ │ │ │ │ ├── bdclansgetmembershipproposalsbyuserrequest.cpp │ │ │ │ │ ├── bdclansgetmembershipproposalsbyuserresponse.cpp │ │ │ │ │ ├── bdclansgetmembershipsbyusersrequest.cpp │ │ │ │ │ ├── bdclansgetmembershipsbyusersresponse.cpp │ │ │ │ │ ├── bdclansgroupfile.cpp │ │ │ │ │ ├── bdclansgroupidentifier.cpp │ │ │ │ │ ├── bdclansgroupidentifier.h │ │ │ │ │ ├── bdclansgroupinfo.cpp │ │ │ │ │ ├── bdclansgroupinfo.h │ │ │ │ │ ├── bdclansgroupmemberinfo.cpp │ │ │ │ │ ├── bdclansgroupmemberinfo.h │ │ │ │ │ ├── bdclansgroupmembershipinfo.cpp │ │ │ │ │ ├── bdclansgroupmembershipinfo.h │ │ │ │ │ ├── bdclansgroupmembershipproposal.cpp │ │ │ │ │ ├── bdclansgroupmembershipproposal.h │ │ │ │ │ ├── bdclansmemberinfo.cpp │ │ │ │ │ ├── bdclansproposemembershipsrequest.cpp │ │ │ │ │ ├── bdclansproposemembershipsresponse.cpp │ │ │ │ │ ├── bdclansremovedmembershipproposal.cpp │ │ │ │ │ ├── bdclansremovedmembershipproposal.h │ │ │ │ │ ├── bdclansremovegroupmemberrequest.cpp │ │ │ │ │ ├── bdclansremovegroupmemberresponse.cpp │ │ │ │ │ ├── bdclansremoveproposalsrequest.cpp │ │ │ │ │ ├── bdclansremoveproposalsresponse.cpp │ │ │ │ │ ├── bdclanssetactivegrouprequest.cpp │ │ │ │ │ ├── bdclansupdategrouprequest.cpp │ │ │ │ │ ├── bdclansuploadgroupfilerequest.cpp │ │ │ │ │ ├── bdclansuploadgroupfileresponse.cpp │ │ │ │ │ ├── bdclansusermembershipproposal.cpp │ │ │ │ │ └── bdclansusermembershipproposal.h │ │ │ │ ├── bdmw4service.cpp │ │ │ │ └── bdmw4service.h │ │ │ ├── bdobjectstore │ │ │ │ ├── bdobjectstore.cpp │ │ │ │ ├── bdobjectstore.h │ │ │ │ ├── bdobjectstoreacl.cpp │ │ │ │ ├── bdobjectstorecacheawareobjectid.cpp │ │ │ │ ├── bdobjectstorecompleteuploadsessionrequest.cpp │ │ │ │ ├── bdobjectstorecompleteuploadsessionresponse.cpp │ │ │ │ ├── bdobjectstorecompleteuploadsessionsrequest.cpp │ │ │ │ ├── bdobjectstorecompleteuploadsessionsresponse.cpp │ │ │ │ ├── bdobjectstoredownloadinterceptor.cpp │ │ │ │ ├── bdobjectstoreerrors.cpp │ │ │ │ ├── bdobjectstoreerrorwrappedmetadata.cpp │ │ │ │ ├── bdobjectstoreerrorwrappedmetadata.h │ │ │ │ ├── bdobjectstoreerrorwrappedobject.cpp │ │ │ │ ├── bdobjectstoreerrorwrappedobject.h │ │ │ │ ├── bdobjectstoregetlargeuserobjectresponse.cpp │ │ │ │ ├── bdobjectstoregetpublisherobjectmetadatasresponse.cpp │ │ │ │ ├── bdobjectstoregetpublisherobjectrequest.cpp │ │ │ │ ├── bdobjectstoregetpublisherobjectresponse.cpp │ │ │ │ ├── bdobjectstoregetpublisherobjectsrequest.cpp │ │ │ │ ├── bdobjectstoregetpublisherobjectsresponse.cpp │ │ │ │ ├── bdobjectstoregetuserobjectsvectorizedrequest.cpp │ │ │ │ ├── bdobjectstoregetuserobjectsvectorizedresponse.cpp │ │ │ │ ├── bdobjectstoregetusersummaryobjectrequest.cpp │ │ │ │ ├── bdobjectstoregetusersummaryobjectresponse.cpp │ │ │ │ ├── bdobjectstoregetusersummaryobjectsrequest.cpp │ │ │ │ ├── bdobjectstoregetusersummaryobjectsresponse.cpp │ │ │ │ ├── bdobjectstorehttpheader.cpp │ │ │ │ ├── bdobjectstorehttpheader.h │ │ │ │ ├── bdobjectstorejsonresponsebase.cpp │ │ │ │ ├── bdobjectstorelistpublisherobjectsbycategoryrequest.cpp │ │ │ │ ├── bdobjectstorelistuserobjectsbycategoryrequest.cpp │ │ │ │ ├── bdobjectstoremetadata.cpp │ │ │ │ ├── bdobjectstoremetadata.h │ │ │ │ ├── bdobjectstoreobject.cpp │ │ │ │ ├── bdobjectstoreobject.h │ │ │ │ ├── bdobjectstoreobjectid.cpp │ │ │ │ ├── bdobjectstoreobjectstatistics.cpp │ │ │ │ ├── bdobjectstorepaginatedrequestbase.cpp │ │ │ │ ├── bdobjectstorerequestbase.cpp │ │ │ │ ├── bdobjectstorerestresponsebase.cpp │ │ │ │ ├── bdobjectstorestatistic.cpp │ │ │ │ ├── bdobjectstorestreaming.cpp │ │ │ │ ├── bdobjectstoretag.cpp │ │ │ │ ├── bdobjectstoreuploadinterceptor.cpp │ │ │ │ ├── bdobjectstoreuploadlargeuserobjectrequest.cpp │ │ │ │ ├── bdobjectstoreuploadlargeuserobjectresponse.cpp │ │ │ │ ├── bdobjectstoreuploadmultiplelargeobjectsrequest.cpp │ │ │ │ ├── bdobjectstoreuploadmultiplelargeobjectsresponse.cpp │ │ │ │ ├── bdobjectstoreuploadsession.cpp │ │ │ │ ├── bdobjectstoreuploaduserobjectsvectorizedrequest.cpp │ │ │ │ ├── bdobjectstoreuploaduserobjectsvectorizedresponse.cpp │ │ │ │ ├── bdobjectstoreuploadusersummaryobjectrequest.cpp │ │ │ │ ├── bdobjectstoreuploadusersummaryobjectresponse.cpp │ │ │ │ ├── bdobjectstorevalidationtoken.cpp │ │ │ │ └── bdobjectstorevalidationtoken.h │ │ │ ├── bdpooledstorage │ │ │ │ ├── bdpooledstorage.cpp │ │ │ │ └── bdpooledstorage.h │ │ │ ├── bdprofiles │ │ │ │ ├── bdprofileinfo.cpp │ │ │ │ ├── bdprofileitem.cpp │ │ │ │ ├── bdprofiles.cpp │ │ │ │ └── bdprofiles.h │ │ │ ├── bdpublishervariables │ │ │ │ ├── bdpublishervariables.cpp │ │ │ │ ├── bdpublishervariables.h │ │ │ │ ├── bdpublishervariablesinfo.cpp │ │ │ │ └── bdretrievepublishervariablesresponse.cpp │ │ │ ├── bdredeemablecode │ │ │ │ ├── bdredeemablecodeservice.cpp │ │ │ │ ├── bdredeemablecodeservice.h │ │ │ │ ├── bdredeemcodegrantedcurrency.cpp │ │ │ │ ├── bdredeemcodegranteditem.cpp │ │ │ │ ├── bdredeemcoderequest.cpp │ │ │ │ ├── bdredeemcoderesult.cpp │ │ │ │ ├── bdredeemcoderesult.h │ │ │ │ └── bdredeempayloadrequest.cpp │ │ │ ├── bdregulations │ │ │ │ ├── bdfetchregulationsrequest.cpp │ │ │ │ ├── bdfetchregulationsresponse.cpp │ │ │ │ ├── bdfetchregulationsresponse.h │ │ │ │ ├── bdgetuserregulationpreferencerequest.cpp │ │ │ │ ├── bdgetuserregulationpreferenceresponse.cpp │ │ │ │ ├── bdgetuserregulationpreferenceresponse.h │ │ │ │ ├── bdregulation.cpp │ │ │ │ ├── bdregulationpreference.cpp │ │ │ │ ├── bdregulations.cpp │ │ │ │ ├── bdregulations.h │ │ │ │ ├── bdsetuserregulationpreferencerequest.cpp │ │ │ │ ├── bdsetuserregulationpreferenceresponse.cpp │ │ │ │ └── bdsetuserregulationpreferenceresponse.h │ │ │ ├── bdrelayservice │ │ │ │ ├── bdrelayservice.cpp │ │ │ │ └── bdrelayservice.h │ │ │ ├── bdremotetaskmanager │ │ │ │ ├── bdfinishedtask.cpp │ │ │ │ ├── bdfinishedtask.h │ │ │ │ ├── bdremotetask.cpp │ │ │ │ ├── bdremotetask.h │ │ │ │ ├── bdremotetaskmanager.cpp │ │ │ │ ├── bdremotetaskmanager.h │ │ │ │ ├── bdstreamingtask.cpp │ │ │ │ ├── bdstreamingtask.h │ │ │ │ ├── bdstructbuffertask.cpp │ │ │ │ └── bdstructbuffertask.h │ │ │ ├── bdrestrequestmanager │ │ │ │ ├── bdrest.cpp │ │ │ │ ├── bdresterrormap.cpp │ │ │ │ ├── bdrestheaders.cpp │ │ │ │ ├── bdrestinternal.cpp │ │ │ │ ├── bdrestinternal.h │ │ │ │ ├── bdrestrequest.cpp │ │ │ │ ├── bdrestrequest.h │ │ │ │ ├── bdrestresponse.cpp │ │ │ │ ├── bdrestresponse.h │ │ │ │ ├── bdrestresponsemessage.cpp │ │ │ │ ├── bdrestresponsemessage.h │ │ │ │ ├── bdresttaskmanager.cpp │ │ │ │ ├── bdresttaskmanager.h │ │ │ │ ├── bdresturi.cpp │ │ │ │ └── bdresturi.inl │ │ │ ├── bdreward │ │ │ │ ├── bdreward.cpp │ │ │ │ ├── bdreward.h │ │ │ │ ├── bdrewardevent.cpp │ │ │ │ ├── bdrewardeventjson.cpp │ │ │ │ ├── bdrewardeventjsonv2.cpp │ │ │ │ ├── bdrewardgameevent.cpp │ │ │ │ └── bduserachievement.cpp │ │ │ ├── bdrichpresence │ │ │ │ ├── bdrichpresencedata.cpp │ │ │ │ ├── bdrichpresenceservice.cpp │ │ │ │ └── bdrichpresenceservice.h │ │ │ ├── bdserverinventory │ │ │ │ ├── bdallocatededicatedserverrequest.cpp │ │ │ │ ├── bdregisterdedicatedserverrequest.cpp │ │ │ │ ├── bdserverinventory.cpp │ │ │ │ └── bdserverinventory.h │ │ │ ├── bdsingleidentity │ │ │ │ ├── bdsingleidentitybase.cpp │ │ │ │ ├── bdsingleidentitybase.h │ │ │ │ ├── bdsingleidentityjsondeserializable.h │ │ │ │ ├── bdumbrella.cpp │ │ │ │ ├── bdumbrella.h │ │ │ │ ├── bdumbrella.inl │ │ │ │ ├── bdumbrellaaccessinfo.cpp │ │ │ │ ├── bdumbrellacrossplayaccessinfo.cpp │ │ │ │ ├── bdumbrellacrossplayaccount.cpp │ │ │ │ ├── bdumbrellacrossplayinfo.cpp │ │ │ │ ├── bdumbrellaprovideraccount.cpp │ │ │ │ ├── bdumbrellauseraccount.cpp │ │ │ │ ├── bduno.cpp │ │ │ │ ├── bduno.inl │ │ │ │ ├── bdunoaccountinfo.cpp │ │ │ │ ├── bdunoaccountinfo.h │ │ │ │ ├── bdunoaccountinfo.inl │ │ │ │ ├── bdunosubscription.cpp │ │ │ │ ├── bdunotermsofservice.cpp │ │ │ │ └── bdunotokens.cpp │ │ │ ├── bdstats │ │ │ │ ├── bdstats.cpp │ │ │ │ ├── bdstats.h │ │ │ │ └── bdstatsinfo.cpp │ │ │ ├── bdstorage │ │ │ │ ├── bdcontextuserstoragefileinfo.cpp │ │ │ │ ├── bdfiledata.cpp │ │ │ │ ├── bdfileinfo.cpp │ │ │ │ ├── bdfilequeryresult.cpp │ │ │ │ ├── bdstorage.cpp │ │ │ │ ├── bdstorage.h │ │ │ │ ├── bduploadfilesinfo.cpp │ │ │ │ └── bdvalidatedcontextuserstoragefileinfo.cpp │ │ │ ├── bdtags │ │ │ │ ├── bdtag.cpp │ │ │ │ ├── bdtags.cpp │ │ │ │ └── bdtags.h │ │ │ ├── bdteams │ │ │ │ ├── bdteamapplicationwithteamid.cpp │ │ │ │ ├── bdteamfailedhandlemembership.cpp │ │ │ │ ├── bdteamfailedproposal.cpp │ │ │ │ ├── bdteaminfo.cpp │ │ │ │ ├── bdteaminfov2.cpp │ │ │ │ ├── bdteammember.cpp │ │ │ │ ├── bdteamprofile.cpp │ │ │ │ ├── bdteamproposal.cpp │ │ │ │ ├── bdteams.cpp │ │ │ │ ├── bdteams.h │ │ │ │ └── bdteamsearchfilter.cpp │ │ │ ├── bdteamshowcase │ │ │ │ ├── bdteamshowcase.cpp │ │ │ │ ├── bdteamshowcase.h │ │ │ │ └── bdteamshowcaserequest.cpp │ │ │ ├── bdtencent │ │ │ │ ├── bdtencent.cpp │ │ │ │ ├── bdtencent.h │ │ │ │ ├── bdtencentaasrecord.cpp │ │ │ │ ├── bdtencentclientdecidedreward.cpp │ │ │ │ ├── bdtencentresponse.cpp │ │ │ │ └── bdtencentrewardeventcode.cpp │ │ │ ├── bdtitleutilities │ │ │ │ ├── bdsanitizestringbase.cpp │ │ │ │ ├── bdsanitizestringrequest.cpp │ │ │ │ ├── bdsanitizestringresponse.cpp │ │ │ │ ├── bdtimestamp.cpp │ │ │ │ ├── bdtitleutilities.cpp │ │ │ │ ├── bdtitleutilities.h │ │ │ │ ├── bduserinfo.cpp │ │ │ │ └── bdverifystring.cpp │ │ │ ├── bduserlogoffrecords │ │ │ │ ├── bduserlogoffrecordsservice.cpp │ │ │ │ └── bduserlogoffrecordsservice.h │ │ │ └── bdvoterank │ │ │ │ ├── bdvoterank.cpp │ │ │ │ └── bdvoterank.h │ │ ├── bdlobbyconnection │ │ │ ├── bdlobbyconnection.cpp │ │ │ ├── bdlobbyconnection.h │ │ │ ├── bdlobbyconnectionlistener.cpp │ │ │ ├── bdtaskbytebuffer.cpp │ │ │ └── bdtaskbytebuffer.h │ │ ├── bdnet │ │ │ ├── bdgethostbyname │ │ │ │ ├── bdgethostbyname-win32.cpp │ │ │ │ ├── bdgethostbyname.cpp │ │ │ │ ├── bdgethostbyname.h │ │ │ │ └── bdgethostbynameconfig.cpp │ │ │ ├── bdnet.cpp │ │ │ ├── bdnet.h │ │ │ ├── bdnetstartparams.cpp │ │ │ └── bdupnp │ │ │ │ ├── bdupnp.cpp │ │ │ │ ├── bdupnpconfig.cpp │ │ │ │ └── bdupnpdevice.cpp │ │ ├── bdplatform │ │ │ ├── bdplatformerror │ │ │ │ └── bdplatformerror.cpp │ │ │ ├── bdplatforminfo │ │ │ │ ├── bdplatforminfo-xboxone.cpp │ │ │ │ └── bdplatforminfo.cpp │ │ │ ├── bdplatformlog │ │ │ │ └── bdplatformlog.cpp │ │ │ ├── bdplatformmemory │ │ │ │ └── bdplatformmemory.inl │ │ │ ├── bdplatformpatterns │ │ │ │ └── bdlinkable.cpp │ │ │ ├── bdplatformrandom │ │ │ │ └── bdplatformtrulyrandom-xboxone.cpp │ │ │ ├── bdplatformsocket │ │ │ │ ├── bdplatformsocket-xboxone.cpp │ │ │ │ ├── bdplatformsocket.cpp │ │ │ │ ├── bdplatformstreamsocket-xboxone.cpp │ │ │ │ ├── bdplatformstreamsocket.cpp │ │ │ │ ├── bdsockaddr.cpp │ │ │ │ └── bdsockaddr.h │ │ │ ├── bdplatformstring │ │ │ │ ├── bdplatformstring-win32.inl │ │ │ │ ├── bdplatformstring.cpp │ │ │ │ └── bdplatformstring.inl │ │ │ ├── bdplatformthread │ │ │ │ ├── bdplatformatomic-cpp11.cpp │ │ │ │ ├── bdplatformmutex-win32.cpp │ │ │ │ ├── bdplatformsemaphore-win32.cpp │ │ │ │ ├── bdplatformsharedmutex-win32.cpp │ │ │ │ ├── bdplatformthread-win32.cpp │ │ │ │ └── bdplatformthread.cpp │ │ │ └── bdplatformtiming │ │ │ │ └── bdplatformtiming.cpp │ │ ├── bdsocket │ │ │ ├── bdaddressmap.cpp │ │ │ ├── bdaddrhandle.cpp │ │ │ ├── bdaddrhandle.h │ │ │ ├── bdaddrhandlerefwrapper.cpp │ │ │ ├── bddtls │ │ │ │ ├── bddtlsassociation.cpp │ │ │ │ ├── bddtlsassociation.h │ │ │ │ ├── bddtlsrandom.h │ │ │ │ ├── bddtlsutils.cpp │ │ │ │ └── bdpacket │ │ │ │ │ ├── bddtlscookieack.cpp │ │ │ │ │ ├── bddtlscookieecho.cpp │ │ │ │ │ ├── bddtlsdata.cpp │ │ │ │ │ ├── bddtlserror.cpp │ │ │ │ │ ├── bddtlsheader.cpp │ │ │ │ │ ├── bddtlsinit.cpp │ │ │ │ │ └── bddtlsinitack.cpp │ │ │ ├── bdnat │ │ │ │ ├── bdipdiscoveryclient.cpp │ │ │ │ ├── bdipdiscoveryclient.h │ │ │ │ ├── bdipdiscoveryconfig.cpp │ │ │ │ ├── bdnattravclient.cpp │ │ │ │ ├── bdnattravclient.h │ │ │ │ ├── bdnattravclientdata.cpp │ │ │ │ ├── bdnattravlistener.cpp │ │ │ │ ├── bdnattypediscoveryclient.cpp │ │ │ │ ├── bdnattypediscoveryclient.h │ │ │ │ ├── bdnattypediscoveryconfig.cpp │ │ │ │ └── bdpacket │ │ │ │ │ ├── bdipdiscoverypacket.cpp │ │ │ │ │ ├── bdipdiscoverypacketreply.cpp │ │ │ │ │ ├── bdnattraversalpacket.cpp │ │ │ │ │ ├── bdnattypediscoverypacket.cpp │ │ │ │ │ └── bdnattypediscoverypacketreply.cpp │ │ │ ├── bdpacketbuffer.cpp │ │ │ ├── bdpacketinterceptor.cpp │ │ │ ├── bdqos │ │ │ │ ├── bdpacket │ │ │ │ │ ├── bdqosreplypacket.cpp │ │ │ │ │ └── bdqosrequestpacket.cpp │ │ │ │ ├── bdqosprobe.cpp │ │ │ │ ├── bdqosprobe.h │ │ │ │ ├── bdqosprobelistener.cpp │ │ │ │ ├── bdqosprobelistener.h │ │ │ │ └── bdqosremoteaddr.h │ │ │ ├── bdroutinglayer │ │ │ │ ├── bdrelayassociation.cpp │ │ │ │ ├── bdrelayassociation.h │ │ │ │ ├── bdrelayassociationlistener.h │ │ │ │ ├── bdrelayconfig.h │ │ │ │ ├── bdrelaypackets │ │ │ │ │ ├── bdrelaybasepacket.cpp │ │ │ │ │ ├── bdrelaybindupgrade.cpp │ │ │ │ │ ├── bdrelaybindupgradeack.cpp │ │ │ │ │ ├── bdrelaydata.cpp │ │ │ │ │ ├── bdrelayinitack.cpp │ │ │ │ │ ├── bdrelayinitbind.cpp │ │ │ │ │ ├── bdrelayinitjoin.cpp │ │ │ │ │ ├── bdrelayping.cpp │ │ │ │ │ └── bdrelayverify.cpp │ │ │ │ ├── bdrelaytypes │ │ │ │ │ ├── bdclientauthtoken.cpp │ │ │ │ │ ├── bdrelayauthtoken.cpp │ │ │ │ │ └── bdrelayjoindata.cpp │ │ │ │ └── bdroutinglayer.cpp │ │ │ ├── bdsecuritykeymap.cpp │ │ │ ├── bdsecuritykeymaplistener.h │ │ │ ├── bdservicebandwidtharbitrator.cpp │ │ │ ├── bdsocketrouter.cpp │ │ │ ├── bdsocketrouter.h │ │ │ ├── bdsocketrouterconfig.cpp │ │ │ └── bdsocketrouterconfig.h │ │ ├── bdtelemetry │ │ │ ├── bdtelemetry.cpp │ │ │ ├── bdtelemetry.h │ │ │ └── components │ │ │ │ ├── bddtlsassociationtelemetry.cpp │ │ │ │ ├── bdipdiscoverytelemetry.cpp │ │ │ │ ├── bdnattravtelemetry.cpp │ │ │ │ ├── bdnattypediscoverytelemetry.cpp │ │ │ │ ├── bdnettelemetry.cpp │ │ │ │ ├── bdqostelemetry.cpp │ │ │ │ ├── bdrelayassociationtelemetry.cpp │ │ │ │ └── bdupnptelemetry.cpp │ │ └── bdutility │ │ │ └── bdjose │ │ │ ├── bdjose.cpp │ │ │ ├── bdjws.cpp │ │ │ └── bdjwt.cpp │ ├── libjpeg │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jerror.c │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ └── jutils.c │ ├── libtomcrypt-1.18 │ │ └── src │ │ │ ├── ciphers │ │ │ ├── aes │ │ │ │ ├── aes.c │ │ │ │ └── aes_ni.c │ │ │ └── des.c │ │ │ ├── hashes │ │ │ ├── helper │ │ │ │ └── hash_memory.c │ │ │ ├── md5.c │ │ │ ├── sha1.c │ │ │ ├── sha2 │ │ │ │ ├── sha256.c │ │ │ │ ├── sha384.c │ │ │ │ └── sha512.c │ │ │ └── tiger.c │ │ │ ├── math │ │ │ ├── ltm_desc.c │ │ │ ├── multi.c │ │ │ └── rand_prime.c │ │ │ ├── misc │ │ │ ├── base64 │ │ │ │ └── base64_decode.c │ │ │ ├── crypt │ │ │ │ ├── crypt_cipher_is_valid.c │ │ │ │ ├── crypt_find_cipher.c │ │ │ │ ├── crypt_find_hash.c │ │ │ │ ├── crypt_find_hash_id.c │ │ │ │ ├── crypt_find_prng.c │ │ │ │ ├── crypt_hash_is_valid.c │ │ │ │ ├── crypt_prng_is_valid.c │ │ │ │ ├── crypt_register_cipher.c │ │ │ │ ├── crypt_register_hash.c │ │ │ │ └── crypt_register_prng.c │ │ │ ├── error_to_string.c │ │ │ ├── intrinsic_funcs.c │ │ │ ├── mem_neq.c │ │ │ ├── memory_funcs.c │ │ │ ├── pk_get_oid.c │ │ │ └── zeromem.c │ │ │ ├── modes │ │ │ └── ctr │ │ │ │ ├── ctr_decrypt.c │ │ │ │ ├── ctr_done.c │ │ │ │ ├── ctr_encrypt.c │ │ │ │ └── ctr_start.c │ │ │ ├── pk │ │ │ ├── asn1 │ │ │ │ └── der │ │ │ │ │ ├── bit │ │ │ │ │ ├── der_decode_bit_string.c │ │ │ │ │ ├── der_decode_raw_bit_string.c │ │ │ │ │ ├── der_encode_bit_string.c │ │ │ │ │ ├── der_encode_raw_bit_string.c │ │ │ │ │ └── der_length_bit_string.c │ │ │ │ │ ├── boolean │ │ │ │ │ ├── der_decode_boolean.c │ │ │ │ │ ├── der_encode_boolean.c │ │ │ │ │ └── der_length_boolean.c │ │ │ │ │ ├── choice │ │ │ │ │ └── der_decode_choice.c │ │ │ │ │ ├── generalizedtime │ │ │ │ │ ├── der_decode_generalizedtime.c │ │ │ │ │ ├── der_encode_generalizedtime.c │ │ │ │ │ └── der_length_generalizedtime.c │ │ │ │ │ ├── ia5 │ │ │ │ │ ├── der_decode_ia5_string.c │ │ │ │ │ ├── der_encode_ia5_string.c │ │ │ │ │ └── der_length_ia5_string.c │ │ │ │ │ ├── integer │ │ │ │ │ ├── der_decode_integer.c │ │ │ │ │ ├── der_encode_integer.c │ │ │ │ │ └── der_length_integer.c │ │ │ │ │ ├── object_identifier │ │ │ │ │ ├── der_decode_object_identifier.c │ │ │ │ │ ├── der_encode_object_identifier.c │ │ │ │ │ └── der_length_object_identifier.c │ │ │ │ │ ├── octet │ │ │ │ │ ├── der_decode_octet_string.c │ │ │ │ │ ├── der_encode_octet_string.c │ │ │ │ │ └── der_length_octet_string.c │ │ │ │ │ ├── printable_string │ │ │ │ │ ├── der_decode_printable_string.c │ │ │ │ │ ├── der_encode_printable_string.c │ │ │ │ │ └── der_length_printable_string.c │ │ │ │ │ ├── sequence │ │ │ │ │ ├── der_decode_sequence_ex.c │ │ │ │ │ ├── der_decode_sequence_multi.c │ │ │ │ │ ├── der_decode_subject_public_key_info.c │ │ │ │ │ ├── der_encode_sequence_ex.c │ │ │ │ │ ├── der_encode_sequence_multi.c │ │ │ │ │ ├── der_encode_subject_public_key_info.c │ │ │ │ │ └── der_length_sequence.c │ │ │ │ │ ├── set │ │ │ │ │ ├── der_encode_set.c │ │ │ │ │ └── der_encode_setof.c │ │ │ │ │ ├── short_integer │ │ │ │ │ ├── der_decode_short_integer.c │ │ │ │ │ ├── der_encode_short_integer.c │ │ │ │ │ └── der_length_short_integer.c │ │ │ │ │ ├── teletex_string │ │ │ │ │ ├── der_decode_teletex_string.c │ │ │ │ │ └── der_length_teletex_string.c │ │ │ │ │ ├── utctime │ │ │ │ │ ├── der_decode_utctime.c │ │ │ │ │ ├── der_encode_utctime.c │ │ │ │ │ └── der_length_utctime.c │ │ │ │ │ └── utf8 │ │ │ │ │ ├── der_decode_utf8_string.c │ │ │ │ │ ├── der_encode_utf8_string.c │ │ │ │ │ └── der_length_utf8_string.c │ │ │ ├── ecc │ │ │ │ ├── ecc_export.c │ │ │ │ ├── ecc_free.c │ │ │ │ ├── ecc_import.c │ │ │ │ ├── ecc_make_key.c │ │ │ │ ├── ecc_shared_secret.c │ │ │ │ ├── ltc_ecc_is_valid_idx.c │ │ │ │ ├── ltc_ecc_map.c │ │ │ │ ├── ltc_ecc_mul2add.c │ │ │ │ ├── ltc_ecc_mulmod_timing.c │ │ │ │ ├── ltc_ecc_points.c │ │ │ │ ├── ltc_ecc_projective_add_point.c │ │ │ │ └── ltc_ecc_projective_dbl_point.c │ │ │ ├── pkcs1 │ │ │ │ ├── pkcs_1_mgf1.c │ │ │ │ ├── pkcs_1_oaep_decode.c │ │ │ │ ├── pkcs_1_oaep_encode.c │ │ │ │ ├── pkcs_1_pss_decode.c │ │ │ │ ├── pkcs_1_pss_encode.c │ │ │ │ ├── pkcs_1_v1_5_decode.c │ │ │ │ └── pkcs_1_v1_5_encode.c │ │ │ └── rsa │ │ │ │ ├── rsa_decrypt_key.c │ │ │ │ ├── rsa_encrypt_key.c │ │ │ │ ├── rsa_export.c │ │ │ │ ├── rsa_exptmod.c │ │ │ │ ├── rsa_free.c │ │ │ │ ├── rsa_import.c │ │ │ │ ├── rsa_make_key.c │ │ │ │ ├── rsa_sign_hash.c │ │ │ │ └── rsa_verify_hash.c │ │ │ └── prngs │ │ │ └── yarrow.c │ ├── libtommath-1.0.1 │ │ ├── bn_fast_mp_invmod.c │ │ ├── bn_fast_mp_montgomery_reduce.c │ │ ├── bn_fast_s_mp_mul_digs.c │ │ ├── bn_fast_s_mp_mul_high_digs.c │ │ ├── bn_fast_s_mp_sqr.c │ │ ├── bn_mp_2expt.c │ │ ├── bn_mp_abs.c │ │ ├── bn_mp_add.c │ │ ├── bn_mp_add_d.c │ │ ├── bn_mp_addmod.c │ │ ├── bn_mp_clamp.c │ │ ├── bn_mp_clear.c │ │ ├── bn_mp_clear_multi.c │ │ ├── bn_mp_cmp.c │ │ ├── bn_mp_cmp_d.c │ │ ├── bn_mp_cmp_mag.c │ │ ├── bn_mp_cnt_lsb.c │ │ ├── bn_mp_copy.c │ │ ├── bn_mp_count_bits.c │ │ ├── bn_mp_div.c │ │ ├── bn_mp_div_2.c │ │ ├── bn_mp_div_2d.c │ │ ├── bn_mp_div_3.c │ │ ├── bn_mp_div_d.c │ │ ├── bn_mp_dr_is_modulus.c │ │ ├── bn_mp_dr_reduce.c │ │ ├── bn_mp_dr_setup.c │ │ ├── bn_mp_exch.c │ │ ├── bn_mp_exptmod.c │ │ ├── bn_mp_exptmod_fast.c │ │ ├── bn_mp_gcd.c │ │ ├── bn_mp_get_int.c │ │ ├── bn_mp_grow.c │ │ ├── bn_mp_init.c │ │ ├── bn_mp_init_copy.c │ │ ├── bn_mp_init_multi.c │ │ ├── bn_mp_init_size.c │ │ ├── bn_mp_invmod.c │ │ ├── bn_mp_invmod_slow.c │ │ ├── bn_mp_karatsuba_mul.c │ │ ├── bn_mp_karatsuba_sqr.c │ │ ├── bn_mp_lcm.c │ │ ├── bn_mp_lshd.c │ │ ├── bn_mp_mod.c │ │ ├── bn_mp_mod_2d.c │ │ ├── bn_mp_mod_d.c │ │ ├── bn_mp_montgomery_calc_normalization.c │ │ ├── bn_mp_montgomery_reduce.c │ │ ├── bn_mp_montgomery_setup.c │ │ ├── bn_mp_mul.c │ │ ├── bn_mp_mul_2.c │ │ ├── bn_mp_mul_2d.c │ │ ├── bn_mp_mul_d.c │ │ ├── bn_mp_mulmod.c │ │ ├── bn_mp_neg.c │ │ ├── bn_mp_prime_is_divisible.c │ │ ├── bn_mp_prime_is_prime.c │ │ ├── bn_mp_prime_miller_rabin.c │ │ ├── bn_mp_rand.c │ │ ├── bn_mp_read_radix.c │ │ ├── bn_mp_read_unsigned_bin.c │ │ ├── bn_mp_reduce.c │ │ ├── bn_mp_reduce_2k.c │ │ ├── bn_mp_reduce_2k_l.c │ │ ├── bn_mp_reduce_2k_setup.c │ │ ├── bn_mp_reduce_2k_setup_l.c │ │ ├── bn_mp_reduce_is_2k.c │ │ ├── bn_mp_reduce_is_2k_l.c │ │ ├── bn_mp_reduce_setup.c │ │ ├── bn_mp_rshd.c │ │ ├── bn_mp_set.c │ │ ├── bn_mp_set_int.c │ │ ├── bn_mp_sqr.c │ │ ├── bn_mp_sqrmod.c │ │ ├── bn_mp_sub.c │ │ ├── bn_mp_sub_d.c │ │ ├── bn_mp_submod.c │ │ ├── bn_mp_to_unsigned_bin.c │ │ ├── bn_mp_toom_mul.c │ │ ├── bn_mp_toom_sqr.c │ │ ├── bn_mp_toradix.c │ │ ├── bn_mp_unsigned_bin_size.c │ │ ├── bn_mp_zero.c │ │ ├── bn_reverse.c │ │ ├── bn_s_mp_add.c │ │ ├── bn_s_mp_exptmod.c │ │ ├── bn_s_mp_mul_digs.c │ │ ├── bn_s_mp_mul_high_digs.c │ │ ├── bn_s_mp_sqr.c │ │ └── bn_s_mp_sub.c │ ├── mjpeg │ │ └── stb_image.cpp │ ├── navpower │ │ └── include │ │ │ ├── bfxplanner.h │ │ │ └── bfxsystem.h │ ├── ntl │ │ └── ntl │ │ │ ├── allocator │ │ │ ├── heap_allocator.h │ │ │ ├── nxheap │ │ │ │ └── nxheap.cpp │ │ │ └── pool_allocator.h │ │ │ ├── array │ │ │ └── array.h │ │ │ ├── list │ │ │ └── fixed_list.h │ │ │ ├── string │ │ │ └── char_string_utils.inl │ │ │ ├── tree │ │ │ ├── rb_tree.h │ │ │ └── rb_tree_node.h │ │ │ └── utility │ │ │ ├── pair.h │ │ │ └── sort.h │ ├── tlsf │ │ └── tlsf.c │ └── umbra │ │ └── interface │ │ └── runtime │ │ └── umbraquery.hpp └── src │ ├── aim_assist │ ├── aim_assist.cpp │ ├── aim_target.cpp │ ├── aim_target_mp.cpp │ └── aim_target_sp.cpp │ ├── anticheat │ ├── bink_encryption.cpp │ ├── dvar_text.cpp │ ├── secure_types.h │ ├── security_obfuscation.cpp │ └── security_obfuscation_integer.h │ ├── assets │ └── keyvaluepairs.cpp │ ├── autotest │ ├── atclient.cpp │ ├── atclient_state.cpp │ ├── atclient_statemachine.cpp │ ├── atclient_traversal.cpp │ ├── atclient_utils.cpp │ ├── atclient_utilsnav.cpp │ ├── atclient_utilsperf.cpp │ └── states │ │ ├── atclient_statemachineaddcalloutmarker.cpp │ │ ├── atclient_statemachineaimat.cpp │ │ ├── atclient_statemachinebrdeploy.cpp │ │ ├── atclient_statemachinebrinfil.cpp │ │ ├── atclient_statemachinebrskydive.cpp │ │ ├── atclient_statemachinecallinkillstreak.cpp │ │ ├── atclient_statemachinecaptureobj.cpp │ │ ├── atclient_statemachinedefault.cpp │ │ ├── atclient_statemachinedrivearound.cpp │ │ ├── atclient_statemachineheal.cpp │ │ ├── atclient_statemachinehuntenemy.cpp │ │ ├── atclient_statemachinehuntenemyvehicle.cpp │ │ ├── atclient_statemachineingame.cpp │ │ ├── atclient_statemachineingamechooseaction.cpp │ │ ├── atclient_statemachineingameloadoutselect.cpp │ │ ├── atclient_statemachineingamequit.cpp │ │ ├── atclient_statemachineingamerandomwalkchooseaction.cpp │ │ ├── atclient_statemachineingamesendinvite.cpp │ │ ├── atclient_statemachineingamespawnselect.cpp │ │ ├── atclient_statemachineonlinefences.cpp │ │ ├── atclient_statemachineperftest.cpp │ │ ├── atclient_statemachineprelobby.cpp │ │ ├── atclient_statemachinerandomwalk.cpp │ │ ├── atclient_statemachineshoot.cpp │ │ ├── atclient_statemachinestartlobby.cpp │ │ ├── atclient_statemachinestartprivateparty.cpp │ │ ├── atclient_statemachineteamselectmenu.cpp │ │ ├── atclient_statemachinethrowgrenade.cpp │ │ └── atclient_statemachinewaitforserverconnection.cpp │ ├── bgame │ ├── asm │ │ ├── bg_player_asm.cpp │ │ ├── bg_player_asm.h │ │ ├── bg_player_asm_animation.cpp │ │ ├── bg_player_asm_builtin.cpp │ │ ├── bg_player_asm_builtin.h │ │ ├── bg_player_asm_condition_builtin.cpp │ │ ├── bg_player_asm_event_builtin.cpp │ │ ├── bg_player_asm_notetrack_builtin.cpp │ │ ├── bg_player_asm_util.cpp │ │ ├── cg_player_asm.cpp │ │ ├── common_asm.cpp │ │ ├── common_asm_instance.cpp │ │ ├── common_asm_instance.h │ │ ├── common_asm_util.cpp │ │ ├── g_player_asm.cpp │ │ └── g_player_asm.h │ ├── bg_accessory.cpp │ ├── bg_accessory_load_obj.cpp │ ├── bg_actor_prone.cpp │ ├── bg_animation_load_obj.cpp │ ├── bg_animation_mp.cpp │ ├── bg_animation_mp.h │ ├── bg_animset_load_obj.cpp │ ├── bg_animset_util.cpp │ ├── bg_animstate.cpp │ ├── bg_animstate_load_obj.cpp │ ├── bg_antilag.cpp │ ├── bg_antilag.h │ ├── bg_asset_streaming.cpp │ ├── bg_atr_utils.cpp │ ├── bg_attachment_load_obj.cpp │ ├── bg_ballistics.cpp │ ├── bg_ballistics.h │ ├── bg_blendspace2d.cpp │ ├── bg_blendspace2d_load_obj.cpp │ ├── bg_botdata_mp.cpp │ ├── bg_bulletpenetration_load_obj.cpp │ ├── bg_camera.cpp │ ├── bg_camera_load_obj.cpp │ ├── bg_camo.cpp │ ├── bg_camo_load_obj.cpp │ ├── bg_carryobject.cpp │ ├── bg_carryobject_load_obj.cpp │ ├── bg_cinematicmotion_load_obj.cpp │ ├── bg_common_db.h │ ├── bg_configstrings.h │ ├── bg_context_mount.cpp │ ├── bg_context_mount_edges.cpp │ ├── bg_coverwall.cpp │ ├── bg_customization_mp.cpp │ ├── bg_damage.cpp │ ├── bg_demeanor.cpp │ ├── bg_door.cpp │ ├── bg_draw_debug.cpp │ ├── bg_dynamic_limits.cpp │ ├── bg_dynamic_limits.h │ ├── bg_entitydata.cpp │ ├── bg_entitydata.h │ ├── bg_entitystate.cpp │ ├── bg_entitystate.h │ ├── bg_equip_deploy.cpp │ ├── bg_equipment_snd.cpp │ ├── bg_execution.cpp │ ├── bg_execution_load_obj.cpp │ ├── bg_footstepvfx_load_obj.cpp │ ├── bg_fov_lerp.cpp │ ├── bg_gamestateinfo.cpp │ ├── bg_gesture.cpp │ ├── bg_gesture_load_obj.cpp │ ├── bg_gesture_priority.cpp │ ├── bg_glass.cpp │ ├── bg_handler.cpp │ ├── bg_helicopter.cpp │ ├── bg_high_priority_weapon.cpp │ ├── bg_hudoutline_load_obj.cpp │ ├── bg_hudoutlines.cpp │ ├── bg_jump.cpp │ ├── bg_ladder.cpp │ ├── bg_laser_load_obj.cpp │ ├── bg_leap.cpp │ ├── bg_light_sampler.cpp │ ├── bg_lookat.cpp │ ├── bg_mantle.cpp │ ├── bg_maprotation.cpp │ ├── bg_matchrules.cpp │ ├── bg_matchrules_history.cpp │ ├── bg_misc.cpp │ ├── bg_missile.cpp │ ├── bg_missile.h │ ├── bg_omnvar.cpp │ ├── bg_omnvar.h │ ├── bg_perks.cpp │ ├── bg_perks.h │ ├── bg_player_collision.cpp │ ├── bg_player_corpse_mp.cpp │ ├── bg_player_events.cpp │ ├── bg_playerextrapolation.cpp │ ├── bg_playerstate.h │ ├── bg_pmove.cpp │ ├── bg_pose.cpp │ ├── bg_predictedentity.cpp │ ├── bg_predictedentity.h │ ├── bg_public.h │ ├── bg_public_inline.h │ ├── bg_reticle_load_obj.cpp │ ├── bg_scoped_pm_update.h │ ├── bg_scr_main.cpp │ ├── bg_skydive.cpp │ ├── bg_slide.cpp │ ├── bg_slidemove.cpp │ ├── bg_slope_stairs.cpp │ ├── bg_soundbanklist.cpp │ ├── bg_soundbanklist_load_obj.cpp │ ├── bg_spaceship.cpp │ ├── bg_spaceship_player.cpp │ ├── bg_spaceshiptarget_load_obj.cpp │ ├── bg_splinetracer.cpp │ ├── bg_static.cpp │ ├── bg_static.h │ ├── bg_static_inline.h │ ├── bg_stepslide.cpp │ ├── bg_suit.cpp │ ├── bg_suit_load_obj.cpp │ ├── bg_suitanimpackage_load_obj.cpp │ ├── bg_targetassist.cpp │ ├── bg_targetassist.h │ ├── bg_targetassist_internal.h │ ├── bg_trace.cpp │ ├── bg_trajectory.cpp │ ├── bg_trajectory.h │ ├── bg_trigger_utils.cpp │ ├── bg_turret.cpp │ ├── bg_turretanims.cpp │ ├── bg_vehicle.cpp │ ├── bg_vehicle.h │ ├── bg_vehicle_anim.cpp │ ├── bg_vehicle_collision_system.cpp │ ├── bg_vehicle_collmap_load_obj.cpp │ ├── bg_vehicle_event_system.cpp │ ├── bg_vehicle_event_system.h │ ├── bg_vehicle_flight_dynamics.cpp │ ├── bg_vehicle_flight_dynamics.h │ ├── bg_vehicle_flight_dynamics_platform.cpp │ ├── bg_vehicle_helicopter_dynamics.cpp │ ├── bg_vehicle_helicopter_dynamics.h │ ├── bg_vehicle_inline.h │ ├── bg_vehicle_load_obj.cpp │ ├── bg_vehicle_occupancy.cpp │ ├── bg_vehicle_physics.cpp │ ├── bg_vehicle_physics.h │ ├── bg_vehicle_physics.inl │ ├── bg_vehicle_physics_audio.cpp │ ├── bg_vehicle_physics_comp.cpp │ ├── bg_vehicle_physics_ground.cpp │ ├── bg_vehicle_physics_ground.h │ ├── bg_vehicle_physics_ground.inl │ ├── bg_vehicle_physics_manager.cpp │ ├── bg_vehicle_physics_manager.inl │ ├── bg_vehicle_physics_rcplane.cpp │ ├── bg_vehicle_physics_serialize.cpp │ ├── bg_vehicle_physics_water.cpp │ ├── bg_view_adjustment.cpp │ ├── bg_warpaint.cpp │ ├── bg_weapon_map.cpp │ ├── bg_weapon_map.h │ ├── bg_weapon_offsets.cpp │ ├── bg_weapons.cpp │ ├── bg_weapons.h │ ├── bg_weapons_ammo.cpp │ ├── bg_weapons_load_obj.cpp │ ├── bg_weapons_setup.cpp │ ├── bg_weapons_util.cpp │ ├── bg_weapons_util.h │ ├── bg_weapons_view.cpp │ ├── bg_world_streaming.cpp │ ├── bg_world_up.cpp │ ├── bg_world_up_mp.cpp │ ├── bg_xcompositemodel.cpp │ └── movingplatforms │ │ ├── bg_moving_platform_playeranim.cpp │ │ ├── bg_moving_platform_ps.cpp │ │ ├── bg_moving_platform_solver.cpp │ │ ├── bg_moving_platforms.cpp │ │ └── bg_moving_platforms.h │ ├── bgame_mp │ ├── bg_calloutmarkerping_mp.h │ ├── bg_dynamic_limits_mp.cpp │ ├── bg_spawngroup_loot.cpp │ ├── bg_spawngroup_loot_table.cpp │ ├── bg_synchronizedplayerinfo.cpp │ └── bg_transients_infil_mp.cpp │ ├── bgame_sp │ ├── bg_dynamic_limits_sp.cpp │ └── bg_weapons_sp.cpp │ ├── binkgpu │ └── binkgpu_d3d12x.cpp │ ├── bison.simple │ ├── blackbox │ ├── blackbox.cpp │ ├── blackbox.h │ ├── blackbox_data.cpp │ └── blackbox_data.h │ ├── callstack │ ├── callstack_cachedlookup.cpp │ ├── callstack_stacktrace_xb3.cpp │ ├── callstack_symbols.cpp │ └── callstack_symbols_msvc.cpp │ ├── cgame │ ├── cg_ammocounter.cpp │ ├── cg_antilag.cpp │ ├── cg_antilag.h │ ├── cg_ballistics.cpp │ ├── cg_ballistics.h │ ├── cg_beamentity.cpp │ ├── cg_blur.cpp │ ├── cg_blurscene.cpp │ ├── cg_calloutmarkerping.cpp │ ├── cg_calloutmarkerping_inline.h │ ├── cg_camera.cpp │ ├── cg_camera.h │ ├── cg_camera_xcam.cpp │ ├── cg_camerashake.cpp │ ├── cg_cinematic_camera.cpp │ ├── cg_client_character.cpp │ ├── cg_client_side_effects.cpp │ ├── cg_client_side_effects.h │ ├── cg_client_weapon.cpp │ ├── cg_compass.cpp │ ├── cg_compass.h │ ├── cg_consolecmds.cpp │ ├── cg_context_mount.cpp │ ├── cg_corpse_fade.cpp │ ├── cg_coverwall.cpp │ ├── cg_createfx.cpp │ ├── cg_debug_log_queue.cpp │ ├── cg_debug_log_queue.h │ ├── cg_debuggraphs.cpp │ ├── cg_door.cpp │ ├── cg_draw.cpp │ ├── cg_draw.h │ ├── cg_draw_buffer.cpp │ ├── cg_draw_debug.cpp │ ├── cg_draw_debug.h │ ├── cg_draw_debug_input.cpp │ ├── cg_draw_indicators.cpp │ ├── cg_draw_reticles.cpp │ ├── cg_drawhits.cpp │ ├── cg_drawmaterial.cpp │ ├── cg_drawrange.cpp │ ├── cg_drawtools.cpp │ ├── cg_dynamic_media.cpp │ ├── cg_edge.cpp │ ├── cg_editableplayerdata.cpp │ ├── cg_effects_load_obj.cpp │ ├── cg_entity.cpp │ ├── cg_entity.h │ ├── cg_entity_workers.cpp │ ├── cg_entitydata.cpp │ ├── cg_ents.cpp │ ├── cg_ents_inline.h │ ├── cg_equip_deploy.cpp │ ├── cg_event.cpp │ ├── cg_event.h │ ├── cg_event_debug.cpp │ ├── cg_execution.cpp │ ├── cg_foliage.cpp │ ├── cg_footstep_tracker.cpp │ ├── cg_fps_graph.cpp │ ├── cg_frontend_scene.cpp │ ├── cg_gesture.cpp │ ├── cg_glass.cpp │ ├── cg_globals.cpp │ ├── cg_globals.h │ ├── cg_globals_inline.h │ ├── cg_globals_static.h │ ├── cg_handler.cpp │ ├── cg_handler.h │ ├── cg_handler_inline.h │ ├── cg_heat.cpp │ ├── cg_helicopter.cpp │ ├── cg_high_priority_weapon.cpp │ ├── cg_hud_lighting.cpp │ ├── cg_hudelem.cpp │ ├── cg_ladder.cpp │ ├── cg_laser.cpp │ ├── cg_light_sampler.cpp │ ├── cg_local.h │ ├── cg_localents.cpp │ ├── cg_main.cpp │ ├── cg_minimized_use.cpp │ ├── cg_missile.cpp │ ├── cg_missile.h │ ├── cg_modelpreviewer.cpp │ ├── cg_offhandweapons.cpp │ ├── cg_omnvar.cpp │ ├── cg_player_fade.cpp │ ├── cg_players.cpp │ ├── cg_playerstate.cpp │ ├── cg_pmove.cpp │ ├── cg_pose.cpp │ ├── cg_pose.h │ ├── cg_pose_utils.cpp │ ├── cg_predict.cpp │ ├── cg_predictedentity.cpp │ ├── cg_predictedentity.h │ ├── cg_radar.cpp │ ├── cg_ragdoll_callback.cpp │ ├── cg_ragdollconstraintentity.cpp │ ├── cg_rumble.cpp │ ├── cg_servercmds.cpp │ ├── cg_shake.cpp │ ├── cg_shellshock.cpp │ ├── cg_skydive.cpp │ ├── cg_slide.cpp │ ├── cg_slope_stairs.cpp │ ├── cg_snapshot.cpp │ ├── cg_snapshot.h │ ├── cg_sound.cpp │ ├── cg_sound.h │ ├── cg_spray.cpp │ ├── cg_static.cpp │ ├── cg_static.h │ ├── cg_static_inline.h │ ├── cg_targetassist.cpp │ ├── cg_targetassist.h │ ├── cg_top_down_map_data.cpp │ ├── cg_trace.cpp │ ├── cg_trace.h │ ├── cg_trace_ground_workers.cpp │ ├── cg_train.cpp │ ├── cg_trajectory.cpp │ ├── cg_trigger.cpp │ ├── cg_trigger_audio.cpp │ ├── cg_trigger_vision.cpp │ ├── cg_turret.cpp │ ├── cg_utils.cpp │ ├── cg_vectorfield.cpp │ ├── cg_vehicle.cpp │ ├── cg_vehicle.h │ ├── cg_vehicle_anim_system.cpp │ ├── cg_vehicle_audio.cpp │ ├── cg_vehicle_camera.cpp │ ├── cg_vehicle_collision_system.cpp │ ├── cg_vehicle_event_system.cpp │ ├── cg_vehicle_hud.cpp │ ├── cg_vehicle_inline.h │ ├── cg_vehicle_physics.cpp │ ├── cg_vehicle_treads.cpp │ ├── cg_view.cpp │ ├── cg_view.h │ ├── cg_view_motion.cpp │ ├── cg_visionsets.cpp │ ├── cg_visionsets_common.cpp │ ├── cg_weapon_fade.cpp │ ├── cg_weapon_map.cpp │ ├── cg_weapon_map.h │ ├── cg_weapon_sounds.cpp │ ├── cg_weapons.cpp │ ├── cg_weapons.h │ ├── cg_weapons_inline.h │ ├── cg_weapons_workers.cpp │ ├── cg_wind.cpp │ ├── cg_world.cpp │ ├── cg_world_streaming.cpp │ ├── cg_wristwatch.cpp │ ├── cg_xcompositemodel.cpp │ ├── clientmodel │ │ ├── cg_clientmodel.cpp │ │ ├── cg_clientmodel_clipmap.cpp │ │ ├── cg_clientmodel_cloth.cpp │ │ ├── cg_clientmodel_debug.cpp │ │ └── cg_clientmodel_physics.cpp │ ├── cloth │ │ ├── cg_cloth.cpp │ │ ├── cg_cloth_entity.cpp │ │ └── cg_cloth_legs.cpp │ └── movingplatforms │ │ ├── cg_moving_platform_aimassist.cpp │ │ ├── cg_moving_platforms.cpp │ │ └── cg_moving_platforms.h │ ├── cgame_mp │ ├── cg_animstate_mp.cpp │ ├── cg_animtree_mp.cpp │ ├── cg_anticheat_mp.cpp │ ├── cg_antilag_mp.cpp │ ├── cg_ballistics_mp.h │ ├── cg_client_arms_mp.cpp │ ├── cg_client_net_perf_mp.cpp │ ├── cg_client_side_effects_mp.cpp │ ├── cg_client_side_effects_mp.h │ ├── cg_collision_avoid.cpp │ ├── cg_compass_br.cpp │ ├── cg_compass_br.h │ ├── cg_compass_cp_raid.cpp │ ├── cg_compass_cp_raid.h │ ├── cg_compass_mp.cpp │ ├── cg_compass_mp.h │ ├── cg_consolecmds_mp.cpp │ ├── cg_customization_mp.cpp │ ├── cg_customization_streaming_mp.cpp │ ├── cg_distance_cache_mp.cpp │ ├── cg_draw_debug_mp.cpp │ ├── cg_draw_mp.cpp │ ├── cg_draw_mp.h │ ├── cg_draw_mp_inline.h │ ├── cg_draw_net_mp.cpp │ ├── cg_drawtools_mp.cpp │ ├── cg_dynamic_media_mp.cpp │ ├── cg_entity_mp.h │ ├── cg_ents_mp.cpp │ ├── cg_event_mp.cpp │ ├── cg_event_mp.h │ ├── cg_fireanimstabilizer_mp.cpp │ ├── cg_gamepad_mp.cpp │ ├── cg_globals_mp.cpp │ ├── cg_globals_mp.h │ ├── cg_globals_mp_inline.h │ ├── cg_globals_static_mp.cpp │ ├── cg_info_mp.cpp │ ├── cg_killcam_mp.cpp │ ├── cg_latency_test_mp.cpp │ ├── cg_main_mp.cpp │ ├── cg_missile_mp.cpp │ ├── cg_missile_mp.h │ ├── cg_mlg_spectator.cpp │ ├── cg_mlg_spectator_cameras.cpp │ ├── cg_moving_platforms_mp.cpp │ ├── cg_player_corpse_mp.cpp │ ├── cg_player_visibility_mp.cpp │ ├── cg_players_mp.cpp │ ├── cg_playerstate_mp.cpp │ ├── cg_predict_mp.cpp │ ├── cg_predictedentity_mp.h │ ├── cg_rumble_mp.cpp │ ├── cg_scoreboard_mp.cpp │ ├── cg_servercmds_mp.cpp │ ├── cg_snapshot_mp.cpp │ ├── cg_sound_mp.cpp │ ├── cg_sound_mp.h │ ├── cg_static_mp.cpp │ ├── cg_static_mp.h │ ├── cg_streaming_mp_inline.h │ ├── cg_targetassist_mp.cpp │ ├── cg_targetassist_mp.h │ ├── cg_tracker_perk_mp.cpp │ ├── cg_vehicle_hud_mp.cpp │ ├── cg_vehicle_mp.cpp │ ├── cg_vehicle_mp.h │ ├── cg_view_mp.cpp │ ├── cg_view_mp.h │ ├── cg_weapon_streaming_mp.cpp │ ├── cg_weapons_mp.cpp │ ├── cg_weapons_mp.h │ └── dedicated_cgame.cpp │ ├── cgame_sp │ ├── cg_actors_sp.cpp │ ├── cg_antilag_sp.cpp │ ├── cg_ballistics_sp.h │ ├── cg_client_side_effects_sp.cpp │ ├── cg_client_side_effects_sp.h │ ├── cg_compass_sp.cpp │ ├── cg_compass_sp.h │ ├── cg_consolecmds_sp.cpp │ ├── cg_draw_debug_sp.cpp │ ├── cg_draw_sp.cpp │ ├── cg_dynamic_media_sp.cpp │ ├── cg_entity_sp.h │ ├── cg_ents_sp.cpp │ ├── cg_event_sp.cpp │ ├── cg_globals_sp.cpp │ ├── cg_globals_sp.h │ ├── cg_globals_static_sp.cpp │ ├── cg_main_sp.cpp │ ├── cg_missile_sp.cpp │ ├── cg_moving_platforms_sp.cpp │ ├── cg_pip_sp.cpp │ ├── cg_players_sp.cpp │ ├── cg_playerstate_sp.cpp │ ├── cg_predict_sp.cpp │ ├── cg_predictedentity_sp.h │ ├── cg_rumble_sp.cpp │ ├── cg_servercmds_sp.cpp │ ├── cg_snapshot_sp.cpp │ ├── cg_sound_sp.cpp │ ├── cg_static_sp.cpp │ ├── cg_static_sp.h │ ├── cg_targetassist_sp.cpp │ ├── cg_vehicle_hud_sp.cpp │ ├── cg_vehicle_sp.cpp │ ├── cg_vehicle_sp.h │ ├── cg_view_sp.cpp │ ├── cg_weapons_sp.cpp │ └── cg_weapons_sp.h │ ├── client │ ├── cl_active_client.cpp │ ├── cl_active_client.h │ ├── cl_api.h │ ├── cl_api_inline.h │ ├── cl_cameraman.cpp │ ├── cl_cgame.cpp │ ├── cl_configstrings.cpp │ ├── cl_connection.cpp │ ├── cl_connection.h │ ├── cl_console.cpp │ ├── cl_debug.cpp │ ├── cl_debugdata.cpp │ ├── cl_debugmapoverlay.cpp │ ├── cl_debugmapoverlay.h │ ├── cl_devgui.cpp │ ├── cl_gamemode_app.cpp │ ├── cl_gamepad.cpp │ ├── cl_glass.cpp │ ├── cl_input.cpp │ ├── cl_input_automated.cpp │ ├── cl_input_automated.h │ ├── cl_input_context.cpp │ ├── cl_input_sequence.cpp │ ├── cl_keybindings.cpp │ ├── cl_keys.cpp │ ├── cl_main.cpp │ ├── cl_main_xb3.cpp │ ├── cl_manager.cpp │ ├── cl_packet_events.cpp │ ├── cl_pause.cpp │ ├── cl_player_data.cpp │ ├── cl_pose.cpp │ ├── cl_preload.cpp │ ├── cl_scrn.cpp │ ├── cl_server_culled_sounds.cpp │ ├── cl_static.h │ ├── cl_stream_views.cpp │ ├── cl_streaming.cpp │ ├── cl_transients.cpp │ ├── cl_transients_world.cpp │ ├── cl_ui.cpp │ ├── cl_ui_active_client.cpp │ ├── cl_ui_active_client.h │ ├── cl_ui_character.cpp │ ├── cl_ui_clientmodel.cpp │ ├── cl_ui_streaming.cpp │ ├── cl_ui_weapon.cpp │ ├── con_channels.cpp │ ├── gamerprofile.cpp │ ├── screen_placement.cpp │ └── screen_placement.h │ ├── client_demo │ ├── cl_demo_common.cpp │ └── cl_demo_server_playback.cpp │ ├── client_mp │ ├── cl_active_client_mp.cpp │ ├── cl_active_client_mp.h │ ├── cl_anonymization.cpp │ ├── cl_cgame_mp.cpp │ ├── cl_configstrings_mp.cpp │ ├── cl_connection_mp.cpp │ ├── cl_connection_mp.h │ ├── cl_console_mp.cpp │ ├── cl_devjoin.cpp │ ├── cl_gamemode_app_mp.cpp │ ├── cl_input_mp.cpp │ ├── cl_input_mp_inline.h │ ├── cl_latency_profile_mp.cpp │ ├── cl_main_mp.cpp │ ├── cl_main_xb3_mp.cpp │ ├── cl_migration_mp.cpp │ ├── cl_net_chan_mp.cpp │ ├── cl_netperf_telemetry.cpp │ ├── cl_parse_mp.cpp │ ├── cl_playagain.cpp │ ├── cl_playerinfos_mp.cpp │ ├── cl_scrn_mp.cpp │ ├── cl_streamsync_mp.cpp │ ├── cl_transients_collision_mp.cpp │ ├── cl_transients_common_mp.cpp │ ├── cl_transients_infil_mp.cpp │ ├── cl_transients_mp.cpp │ ├── cl_transients_world_mp.cpp │ ├── cl_ui_mp.cpp │ ├── cl_voice_mp.cpp │ ├── cl_voice_mp.h │ ├── client_mp.h │ ├── lobbycommon.cpp │ ├── party_clienttask_hostresolver.cpp │ ├── party_clienttask_service.cpp │ ├── party_clienttask_task.cpp │ ├── party_local.h │ ├── party_request.cpp │ ├── partychat.cpp │ ├── partyclient.cpp │ ├── partycommon.cpp │ ├── partyhost.cpp │ ├── partyhost_matchmaking.cpp │ ├── partyjoining.cpp │ ├── partymigrate.cpp │ ├── partyprofile.cpp │ ├── partyui.cpp │ ├── profanityfilter.cpp │ └── voicemute.cpp │ ├── client_sp │ ├── cl_active_client_sp.cpp │ ├── cl_active_client_sp.h │ ├── cl_cgame_sp.cpp │ ├── cl_configstrings_sp.cpp │ ├── cl_connection_sp.cpp │ ├── cl_connection_sp.h │ ├── cl_console_sp.cpp │ ├── cl_gamemode_app_sp.cpp │ ├── cl_input_sp.cpp │ ├── cl_main_sp.cpp │ ├── cl_parse_sp.cpp │ ├── cl_scrn_sp.cpp │ └── cl_transients_sp.cpp │ ├── cloth │ └── private │ │ ├── core │ │ ├── cloth.cpp │ │ ├── clothassets.cpp │ │ ├── clothdebug.cpp │ │ ├── clothupdate.cpp │ │ └── clothxanimnode.cpp │ │ └── havok │ │ ├── havokcloth.cpp │ │ ├── havokclothassets.cpp │ │ ├── havokclothdebug.cpp │ │ ├── havokclothinstancemanager.cpp │ │ ├── havokclothphysicsproxy.cpp │ │ ├── havokclothphysicsproxy.h │ │ ├── havokclothupdate.cpp │ │ ├── havokclothvectorfieldaction.cpp │ │ └── havokclothvectorfieldaction.h │ ├── containers │ └── hash_table.h │ ├── crashreport │ ├── crashreport_internal.cpp │ └── crashreport_xb3.cpp │ ├── database │ ├── db_alwaysloaded.cpp │ ├── db_assetentry.h │ ├── db_assetentryflags.h │ ├── db_assetentrypool.cpp │ ├── db_assetentrypool.h │ ├── db_assetentrytable.cpp │ ├── db_assetentrytable.h │ ├── db_assetenum.cpp │ ├── db_assetenum.h │ ├── db_assethandlers.cpp │ ├── db_assetnamefix.h │ ├── db_assetnames.cpp │ ├── db_assetnames.h │ ├── db_assetpool.h │ ├── db_assetusage.cpp │ ├── db_async_file_load.cpp │ ├── db_auth_load.cpp │ ├── db_backend_callback.cpp │ ├── db_backend_callback.inl │ ├── db_binarypatch_load.cpp │ ├── db_cmp_common.cpp │ ├── db_cmp_load.cpp │ ├── db_debug_dump.cpp │ ├── db_delay_loading.cpp │ ├── db_devfastboot.cpp │ ├── db_encryption.cpp │ ├── db_fastfile_header.cpp │ ├── db_fastfile_load.cpp │ ├── db_fastfile_pointer.h │ ├── db_file_common.cpp │ ├── db_file_load.cpp │ ├── db_filesys_disk.cpp │ ├── db_filesys_indy.cpp │ ├── db_level_loading.cpp │ ├── db_loadingbar.cpp │ ├── db_loadtimes.cpp │ ├── db_memory.cpp │ ├── db_memory_types.cpp │ ├── db_modelfixup.cpp │ ├── db_mychanges.cpp │ ├── db_patchmem.cpp │ ├── db_pendingzones.cpp │ ├── db_preload.cpp │ ├── db_preload_inline.h │ ├── db_preload_packedwalk.cpp │ ├── db_registry.cpp │ ├── db_stream.cpp │ ├── db_stream.h │ ├── db_stream_load.cpp │ ├── db_streaming_info_db.cpp │ ├── db_stringtable_load.cpp │ ├── db_struct_layout.cpp │ ├── db_transient_cost_calc.cpp │ ├── db_transient_world.cpp │ ├── db_transientfiletype.cpp │ ├── db_transients.cpp │ ├── db_weapons.cpp │ ├── db_xhash.cpp │ └── db_zones.cpp │ ├── db_generated │ └── load │ │ └── impl │ │ ├── archive_impl_ai_bt_db.h │ │ ├── archive_impl_ai_coverselector_db.h │ │ ├── archive_impl_ai_enemyselector_db.h │ │ ├── archive_impl_asm_db.h │ │ ├── archive_impl_bg_accessory_db.h │ │ ├── archive_impl_bg_animation_db.h │ │ ├── archive_impl_bg_animset_db.h │ │ ├── archive_impl_bg_animstate_db.h │ │ ├── archive_impl_bg_attachment_db.h │ │ ├── archive_impl_bg_blendspace2d_db.h │ │ ├── archive_impl_bg_bulletpenetration_db.h │ │ ├── archive_impl_bg_camera_db.h │ │ ├── archive_impl_bg_camo_db.h │ │ ├── archive_impl_bg_carryobject_db.h │ │ ├── archive_impl_bg_cinematicmotion_db.h │ │ ├── archive_impl_bg_common_db.h │ │ ├── archive_impl_bg_equipment_snd_db.h │ │ ├── archive_impl_bg_execution_db.h │ │ ├── archive_impl_bg_footstepvfx_db.h │ │ ├── archive_impl_bg_gesture_db.h │ │ ├── archive_impl_bg_hudoutline_db.h │ │ ├── archive_impl_bg_laser_db.h │ │ ├── archive_impl_bg_reticle_db.h │ │ ├── archive_impl_bg_script_bundle_db.h │ │ ├── archive_impl_bg_soundbanklist_db.h │ │ ├── archive_impl_bg_spaceshiptarget_db.h │ │ ├── archive_impl_bg_suit_db.h │ │ ├── archive_impl_bg_suitanimpackage_db.h │ │ ├── archive_impl_bg_top_down_map_data_db.h │ │ ├── archive_impl_bg_vehicle_db.h │ │ ├── archive_impl_bg_weapons_anim_db.h │ │ ├── archive_impl_bg_weapons_db.h │ │ ├── archive_impl_cg_effects_db.h │ │ ├── archive_impl_cg_vectorfield_db.h │ │ ├── archive_impl_clientcharacter_db.h │ │ ├── archive_impl_clothasset_db.h │ │ ├── archive_impl_cm_clientmodel_db.h │ │ ├── archive_impl_cm_local_db.h │ │ ├── archive_impl_com_bsp_db.h │ │ ├── archive_impl_com_packed_types_db.h │ │ ├── archive_impl_com_stringtable_db.h │ │ ├── archive_impl_db_assetlist.h │ │ ├── archive_impl_db_primtypes.h │ │ ├── archive_impl_db_streaming_info_db.h │ │ ├── archive_impl_ddl_db.h │ │ ├── archive_impl_dlog_db.h │ │ ├── archive_impl_dynentity_db.h │ │ ├── archive_impl_fx_effect_db.h │ │ ├── archive_impl_fx_glass_db.h │ │ ├── archive_impl_fx_particle_sim_animation_db.h │ │ ├── archive_impl_fx_world_db.h │ │ ├── archive_impl_g_bsp_db.h │ │ ├── archive_impl_g_glass_db.h │ │ ├── archive_impl_g_locdmgtable_db.h │ │ ├── archive_impl_keyvaluepairs_db.h │ │ ├── archive_impl_leaderboard_db.h │ │ ├── archive_impl_luafile_db.h │ │ ├── archive_impl_map_ents_db.h │ │ ├── archive_impl_mayhem_db.h │ │ ├── archive_impl_navmesh_db.h │ │ ├── archive_impl_netconststrings_db.h │ │ ├── archive_impl_particledb.h │ │ ├── archive_impl_particlescriptedinputdb.h │ │ ├── archive_impl_pathnode_db.h │ │ ├── archive_impl_physicsasset_db.h │ │ ├── archive_impl_physicsdebugdata_db.h │ │ ├── archive_impl_physicsfxpipeline_db.h │ │ ├── archive_impl_physicsfxshape_db.h │ │ ├── archive_impl_physicslibrary_db.h │ │ ├── archive_impl_physicssfxeventasset_db.h │ │ ├── archive_impl_physicsvfxeventasset_db.h │ │ ├── archive_impl_pmr_octree_db.h │ │ ├── archive_impl_proceduralbones_db.h │ │ ├── archive_impl_r_bsp_db.h │ │ ├── archive_impl_r_decal_volume_db.h │ │ ├── archive_impl_r_fog_spline_db.h │ │ ├── archive_impl_r_grading_clut_db.h │ │ ├── archive_impl_r_image_db.h │ │ ├── archive_impl_r_light_db.h │ │ ├── archive_impl_r_material_db.h │ │ ├── archive_impl_r_mayhem_db.h │ │ ├── archive_impl_r_reflection_probe_db.h │ │ ├── archive_impl_r_sky_db.h │ │ ├── archive_impl_r_st_db.h │ │ ├── archive_impl_r_staticmodel_db.h │ │ ├── archive_impl_r_surface_db.h │ │ ├── archive_impl_r_ttf_db.h │ │ ├── archive_impl_r_volumetric_db.h │ │ ├── archive_impl_r_xsurface_db.h │ │ ├── archive_impl_rawfile_db.h │ │ ├── archive_impl_rumble_db.h │ │ ├── archive_impl_scr_debugdata_db.h │ │ ├── archive_impl_script_db.h │ │ ├── archive_impl_scriptable_db.h │ │ ├── archive_impl_snd_alias_db.h │ │ ├── archive_impl_snd_bank_db.h │ │ ├── archive_impl_snd_db.h │ │ ├── archive_impl_snd_globals_db.h │ │ ├── archive_impl_snd_music_db.h │ │ ├── archive_impl_spatialpartition_population_db.h │ │ ├── archive_impl_spatialpartition_tree_db.h │ │ ├── archive_impl_stream_db.h │ │ ├── archive_impl_stringed_db.h │ │ ├── archive_impl_tactical_graph_db.h │ │ ├── archive_impl_tr_types_db.h │ │ ├── archive_impl_tracer_db.h │ │ ├── archive_impl_ui_shared_db.h │ │ ├── archive_impl_virtual_leaderboard_db.h │ │ ├── archive_impl_xanim_curve_db.h │ │ ├── archive_impl_xanim_db.h │ │ ├── archive_impl_xcam_db.h │ │ ├── archive_impl_xcompositemodel_db.h │ │ ├── archive_impl_xmodel_db.h │ │ └── archive_impl_xmodel_public_db.h │ ├── db_zlib │ ├── db_infblock.cpp │ ├── db_infcodes.cpp │ ├── db_inffast.cpp │ ├── db_inflate.cpp │ ├── db_inftrees.cpp │ ├── db_infutil.cpp │ └── db_zutil.cpp │ ├── devgui │ ├── devgui.cpp │ ├── devgui_input.cpp │ ├── devgui_mouse.cpp │ └── devgui_util.cpp │ ├── devhost │ ├── com_devhost.cpp │ ├── com_devhost_api.cpp │ ├── com_devhost_app.cpp │ ├── com_devhost_buffer.cpp │ └── com_socket_pc_xb3.cpp │ ├── direct_telemetry │ └── ringbuffer.cpp │ ├── dlog │ ├── bdtelemetrydlogsink.cpp │ ├── dlog_autofills.cpp │ ├── dlog_bindings.cpp │ ├── dlog_endpoints.cpp │ ├── dlog_event_base.cpp │ ├── dlog_event_base.h │ ├── dlog_event_client_perf_sample.cpp │ ├── dlog_event_mm_telemetry.cpp │ ├── dlog_event_mm_telemetry.h │ ├── dlog_event_telemetry_loot.cpp │ ├── dlog_event_telemetry_screen_view.cpp │ ├── dlog_event_telemetry_start_match.cpp │ ├── dlog_event_telemetry_start_session.cpp │ ├── dlog_event_telemetry_store_item_browse.cpp │ ├── dlog_events.cpp │ ├── dlog_events_shared.cpp │ ├── dlog_histogram.cpp │ ├── dlog_hookup.cpp │ ├── dlog_serializers.cpp │ └── dlog_tdigest.h │ ├── ds │ ├── ds_lobby_message.cpp │ └── ds_utils.cpp │ ├── dw │ ├── dwcounter.cpp │ ├── dwcrossplatformidentityeventhandler.cpp │ ├── dwenvironment.cpp │ ├── dweventbuffer.cpp │ ├── dwframe.cpp │ ├── dwlobbyeventhandler.h │ ├── dwlogon-xb3.cpp │ ├── dwlogonhsm_base.cpp │ ├── dwlogonhsm_xb3.cpp │ ├── dwlogonhsm_xb3.h │ ├── dwmail.cpp │ ├── dwmarketingcommsmgr.cpp │ ├── dwmarketingcommsmgr.h │ ├── dwmemory.cpp │ ├── dwnet.cpp │ ├── dwplatformtypes.h │ ├── dwrecordevent.cpp │ ├── dwregioninfo.cpp │ ├── dwservicesaccess.cpp │ ├── dwservicesaccess.h │ ├── dwserviceswrappers.cpp │ ├── dwserviceswrappers.h │ ├── dwstats.cpp │ ├── dwstorage.cpp │ ├── dwstorage.h │ ├── dwtasks.cpp │ ├── dwteams.cpp │ ├── dwtelemetry.cpp │ ├── dwtitleutilities.cpp │ ├── dwuseridlookup.cpp │ ├── dwusernamesearch.cpp │ ├── dwutils-console.cpp │ ├── dwutils.cpp │ └── leaderboardinfo.h │ ├── dynentity │ ├── dynentity.cpp │ ├── dynentity.h │ ├── dynentity_archive.cpp │ ├── dynentity_client.cpp │ ├── dynentity_client.h │ ├── dynentity_coll.cpp │ ├── dynentity_debug.cpp │ ├── dynentity_frameflags.cpp │ ├── dynentity_linking.cpp │ ├── dynentity_load_obj.cpp │ ├── dynentity_math.cpp │ ├── dynentity_physics_sync.cpp │ ├── dynentity_scriptable.cpp │ ├── dynentity_spatial.cpp │ ├── dynentity_streaming.cpp │ └── dynentity_utility.cpp │ ├── effectscore │ ├── fx_archive.cpp │ ├── fx_beam.cpp │ ├── fx_dismemberment.cpp │ ├── fx_draw.cpp │ ├── fx_draw_util.cpp │ ├── fx_draw_util.h │ ├── fx_dvars.cpp │ ├── fx_glass.cpp │ ├── fx_glass_archive.cpp │ ├── fx_glass_crack.cpp │ ├── fx_glass_dpvs.cpp │ ├── fx_glass_draw.cpp │ ├── fx_glass_trace.cpp │ ├── fx_glass_update.cpp │ ├── fx_load_obj.cpp │ ├── fx_marks.cpp │ ├── fx_marks.h │ ├── fx_particle_sim_animation_load_obj.cpp │ ├── fx_postlight.cpp │ ├── fx_profile.cpp │ ├── fx_random.cpp │ ├── fx_shared.cpp │ ├── fx_shared.h │ ├── fx_spawn.cpp │ ├── fx_spawn_api.cpp │ ├── fx_sprite.cpp │ ├── fx_system_api.cpp │ ├── fx_system_api_inline.h │ ├── fx_system_init.cpp │ ├── fx_system_type.h │ ├── fx_system_util.cpp │ ├── fx_update.cpp │ ├── fx_update_api.cpp │ ├── fx_update_draw.cpp │ ├── fx_update_util.cpp │ ├── fx_update_util.h │ └── fx_world.cpp │ ├── file │ ├── file_stream.cpp │ └── file_stream_dvars.cpp │ ├── fxents │ ├── fxentity.h │ ├── fxentity_client.cpp │ └── fxentity_server.cpp │ ├── game │ ├── actor_event_listeners.cpp │ ├── actor_events.cpp │ ├── actor_navigation.cpp │ ├── actor_physics.cpp │ ├── actor_senses.cpp │ ├── actor_threat.cpp │ ├── ai │ │ ├── ai_accuracy_graph.cpp │ │ ├── ai_actor_interface.cpp │ │ ├── ai_actor_interface.h │ │ ├── ai_agent_interface.cpp │ │ ├── ai_agent_interface.h │ │ ├── ai_asm.cpp │ │ ├── ai_asm.h │ │ ├── ai_asm_builtin.cpp │ │ ├── ai_asm_builtin_arrival.cpp │ │ ├── ai_asm_builtin_exit.cpp │ │ ├── ai_asm_instance.cpp │ │ ├── ai_asm_load_obj.cpp │ │ ├── ai_asm_scr.cpp │ │ ├── ai_asm_util.cpp │ │ ├── ai_avoidance.cpp │ │ ├── ai_blackboard.cpp │ │ ├── ai_bot_interface.cpp │ │ ├── ai_bot_interface.h │ │ ├── ai_bt_builtin.cpp │ │ ├── ai_bt_builtin_cover.cpp │ │ ├── ai_bt_builtin_grenade.cpp │ │ ├── ai_bt_builtin_util.cpp │ │ ├── ai_bt_builtin_weapon.cpp │ │ ├── ai_bt_common.cpp │ │ ├── ai_bt_tree_asset.cpp │ │ ├── ai_common_interface.cpp │ │ ├── ai_common_interface.h │ │ ├── ai_cover.cpp │ │ ├── ai_debug_util.cpp │ │ ├── ai_globals.cpp │ │ ├── ai_grenade_toss.cpp │ │ ├── ai_lookat.cpp │ │ ├── ai_scheduler.cpp │ │ ├── ai_scr.cpp │ │ ├── ai_scr_functions.h │ │ ├── ai_scripted.cpp │ │ ├── ai_scripted_fields.cpp │ │ ├── ai_scripted_interface.cpp │ │ ├── ai_scripted_interface.h │ │ ├── ai_shoot.cpp │ │ ├── ai_suppression.cpp │ │ ├── ai_wrapper.h │ │ ├── orca_avoidance.cpp │ │ ├── tactical_graph.cpp │ │ ├── tactical_graph_debug.cpp │ │ └── tactical_graph_search.cpp │ ├── ai_aim.cpp │ ├── ai_badplace.cpp │ ├── ai_common.cpp │ ├── ai_grenade.cpp │ ├── ai_navigator.cpp │ ├── ai_navigator.h │ ├── ai_navigator_2d.cpp │ ├── ai_navigator_2d.h │ ├── ai_navigator_3d.cpp │ ├── ai_navigator_3d.h │ ├── enthandle.cpp │ ├── g_active.cpp │ ├── g_anim_visualizer.cpp │ ├── g_animscripted.cpp │ ├── g_animset_util.cpp │ ├── g_antilag.cpp │ ├── g_antilag.h │ ├── g_ballistics.cpp │ ├── g_ballistics.h │ ├── g_beamentity.cpp │ ├── g_bullet.cpp │ ├── g_bullet.h │ ├── g_camera.cpp │ ├── g_client.cpp │ ├── g_client.h │ ├── g_client_character.cpp │ ├── g_client_fields.cpp │ ├── g_client_script_cmd.cpp │ ├── g_client_tasks.cpp │ ├── g_client_tasks.h │ ├── g_cmds.cpp │ ├── g_combat.cpp │ ├── g_combat.h │ ├── g_configstrings.cpp │ ├── g_configstrings.h │ ├── g_coverwall.cpp │ ├── g_damage_parts.cpp │ ├── g_debug.cpp │ ├── g_door.cpp │ ├── g_draw_debug.cpp │ ├── g_entity_marks.cpp │ ├── g_entity_tag.h │ ├── g_entitydata.cpp │ ├── g_equip_deploy.cpp │ ├── g_execution.cpp │ ├── g_frontend_scene.cpp │ ├── g_glass.cpp │ ├── g_handler.cpp │ ├── g_head_icons.cpp │ ├── g_hudelem.cpp │ ├── g_hudoutlines.cpp │ ├── g_items.cpp │ ├── g_items.h │ ├── g_level_locals.h │ ├── g_light_sampler.cpp │ ├── g_locdmgtable_load_obj.cpp │ ├── g_main.cpp │ ├── g_minimized_use.cpp │ ├── g_misc.cpp │ ├── g_missile.cpp │ ├── g_missile.h │ ├── g_motionwarp.cpp │ ├── g_motionwarp_utils.cpp │ ├── g_objectives.cpp │ ├── g_omnvar.cpp │ ├── g_omnvar.h │ ├── g_player_mask.cpp │ ├── g_pmove.cpp │ ├── g_predictedentity.h │ ├── g_public.h │ ├── g_ragdollconstraintentity.cpp │ ├── g_rvo3.cpp │ ├── g_save.h │ ├── g_savememory.cpp │ ├── g_scr_animation.cpp │ ├── g_scr_data.h │ ├── g_scr_data_mp_shared.h │ ├── g_scr_main.cpp │ ├── g_scr_main.h │ ├── g_scr_main_mp_entry.cpp │ ├── g_scr_mover.cpp │ ├── g_scr_scriptable.cpp │ ├── g_scr_weapon.cpp │ ├── g_snapshot_weapon_map.cpp │ ├── g_spawn.cpp │ ├── g_spawner.cpp │ ├── g_static.cpp │ ├── g_static.h │ ├── g_target_markers.cpp │ ├── g_targetassist.cpp │ ├── g_targetassist.h │ ├── g_targets.cpp │ ├── g_trace.cpp │ ├── g_trajectory.cpp │ ├── g_trigger.cpp │ ├── g_turret.cpp │ ├── g_turret.h │ ├── g_utils.cpp │ ├── g_utils.h │ ├── g_vehicle.cpp │ ├── g_vehicle.h │ ├── g_vehicle_collision_system.cpp │ ├── g_vehicle_event_system.cpp │ ├── g_vehicle_helicopter.cpp │ ├── g_vehicle_path.cpp │ ├── g_vehicle_physics.cpp │ ├── g_vehicle_script.cpp │ ├── g_vehicle_spawner.cpp │ ├── g_vehicle_suspend.cpp │ ├── g_vehicle_suspend.h │ ├── g_vehicle_util.cpp │ ├── g_vehicle_util.h │ ├── g_weapon.cpp │ ├── g_weapon.h │ ├── g_weapon_map.cpp │ ├── g_world_streaming.cpp │ ├── g_xcompositemodel.cpp │ ├── linkto.cpp │ ├── movingplatforms │ │ ├── g_moving_platform_entitytracking.cpp │ │ ├── g_moving_platforms.cpp │ │ └── g_moving_platforms.h │ ├── nav_exposuredata.cpp │ ├── nav_link.cpp │ ├── nav_obstacle.cpp │ ├── nav_query.cpp │ ├── nav_repulsor.cpp │ ├── nav_scr.cpp │ ├── nav_space.cpp │ ├── navmesh.cpp │ ├── pathnode.cpp │ ├── pathnode.h │ ├── pathnode_load_obj.cpp │ ├── player_use.cpp │ ├── player_use_collection.cpp │ ├── player_use_local.cpp │ ├── player_use_local.h │ ├── savedevice.cpp │ ├── savefield.cpp │ ├── savememory.h │ ├── scr_const.cpp │ ├── sentient.cpp │ ├── sentient.h │ ├── sentient_fields.cpp │ ├── sentient_script_cmd.cpp │ └── serialize │ │ ├── g_save_generated_dev.h │ │ └── g_save_serialize.h │ ├── game_mp │ ├── g_active_mp.cpp │ ├── g_animstate_mp.cpp │ ├── g_antilag_mp.cpp │ ├── g_antilag_mp.h │ ├── g_ballistics_mp.h │ ├── g_bullet_mp.cpp │ ├── g_calloutmarkerping_mp.cpp │ ├── g_character_streaming_mp.cpp │ ├── g_client_fields_mp.cpp │ ├── g_client_mp.cpp │ ├── g_client_script_cmd_mp.cpp │ ├── g_cmds_mp.cpp │ ├── g_combat_mp.cpp │ ├── g_configstrings_mp.cpp │ ├── g_dialog_mp.cpp │ ├── g_hudelem_mp.cpp │ ├── g_items_mp.cpp │ ├── g_main_mp.cpp │ ├── g_missile_mp.cpp │ ├── g_moving_platforms_mp.cpp │ ├── g_moving_platforms_mp.h │ ├── g_player_corpse_mp.cpp │ ├── g_player_events_mp.cpp │ ├── g_player_events_mp.h │ ├── g_playerspawn_mp.cpp │ ├── g_playerspawn_scoring_mp.cpp │ ├── g_save_mp.cpp │ ├── g_savefield_mp.cpp │ ├── g_savememory_mp.h │ ├── g_scr_br.cpp │ ├── g_scr_data_mp.h │ ├── g_scr_main_mp.cpp │ ├── g_scr_mover_mp.cpp │ ├── g_scr_playerspawn.cpp │ ├── g_spawn_mp.cpp │ ├── g_static_mp.cpp │ ├── g_static_mp.h │ ├── g_targetassist_mp.cpp │ ├── g_turret_mp.cpp │ ├── g_utils_mp.cpp │ ├── g_vehicle_helicopter_mp.cpp │ ├── g_vehicle_mp.cpp │ ├── g_vehicle_script_mp.cpp │ ├── g_weapon_mp.cpp │ ├── g_weapon_streaming_mp.cpp │ └── savememory_mp.cpp │ ├── game_sp │ ├── actor.cpp │ ├── actor_ambush.cpp │ ├── actor_animapi.cpp │ ├── actor_animscripted.cpp │ ├── actor_behave.cpp │ ├── actor_corpse.cpp │ ├── actor_cover_arrival.cpp │ ├── actor_death.cpp │ ├── actor_fields.cpp │ ├── actor_function_table.cpp │ ├── actor_generic.cpp │ ├── actor_grenade.cpp │ ├── actor_lookat.cpp │ ├── actor_negotiation.cpp │ ├── actor_orientation.cpp │ ├── actor_pain.cpp │ ├── actor_script_cmd.cpp │ ├── actor_spawner.cpp │ ├── actor_state.cpp │ ├── actor_team_move.cpp │ ├── actor_turret.cpp │ ├── g_active_sp.cpp │ ├── g_actor_prone.cpp │ ├── g_actorvisibility.cpp │ ├── g_antilag_sp.cpp │ ├── g_antilag_sp.h │ ├── g_ballistics_sp.h │ ├── g_bullet_sp.cpp │ ├── g_client_fields_sp.cpp │ ├── g_client_script_sp.cpp │ ├── g_client_sp.cpp │ ├── g_cmds_sp.cpp │ ├── g_combat_sp.cpp │ ├── g_configstrings_sp.cpp │ ├── g_hudelem_sp.cpp │ ├── g_items_sp.cpp │ ├── g_main_sp.cpp │ ├── g_misc_sp.cpp │ ├── g_missile_sp.cpp │ ├── g_moving_platform_actor_sp.cpp │ ├── g_moving_platforms_sp.cpp │ ├── g_moving_platforms_sp.h │ ├── g_pip_sp.cpp │ ├── g_player_events_sp.cpp │ ├── g_playeruse_sp.cpp │ ├── g_save_sp.cpp │ ├── g_savefield_sp.cpp │ ├── g_savememory_sp.h │ ├── g_scr_data_sp.h │ ├── g_scr_load_obj_sp.cpp │ ├── g_scr_main_sp.cpp │ ├── g_spawn_sp.cpp │ ├── g_static_sp.cpp │ ├── g_static_sp.h │ ├── g_targetassist_sp.cpp │ ├── g_turret_sp.cpp │ ├── g_turret_sp.h │ ├── g_utils_sp.cpp │ ├── g_vehicle_script_sp.cpp │ ├── g_vehicle_sp.cpp │ ├── g_vehicle_submarine_sp.cpp │ ├── g_vehicle_ugv_sp.cpp │ ├── g_weapon_sp.cpp │ └── savememory_sp.cpp │ ├── gamedvr │ └── gamedvr.cpp │ ├── gfx_d3d │ ├── d3d │ │ ├── r_formats_d3d.cpp │ │ └── r_formats_d3d.h │ ├── dx12 │ │ └── r_barrier_dx12.h │ ├── r_add_brushmodel.cpp │ ├── r_add_bsp.cpp │ ├── r_add_dobj_xmodel.cpp │ ├── r_add_staticmodel.cpp │ ├── r_backend_data.cpp │ ├── r_backend_data.h │ ├── r_backend_gpu_status.cpp │ ├── r_binding.cpp │ ├── r_binding.h │ ├── r_bsp.cpp │ ├── r_bsp.h │ ├── r_bsp_displacement.cpp │ ├── r_bsp_load_obj.cpp │ ├── r_bspsurf.h │ ├── r_bspsurfiter.h │ ├── r_buffers.cpp │ ├── r_buffers.h │ ├── r_callback_d3d.cpp │ ├── r_cinematic.cpp │ ├── r_cmdbuf.cpp │ ├── r_cmds.cpp │ ├── r_codesurf.cpp │ ├── r_codesurfiter.h │ ├── r_collision.cpp │ ├── r_colorimetry.cpp │ ├── r_composite_postfx.cpp │ ├── r_compressed_sunshadow.cpp │ ├── r_compute.cpp │ ├── r_compute.h │ ├── r_cs_utils.cpp │ ├── r_debug.cpp │ ├── r_debug_alloc.cpp │ ├── r_decal_volume.cpp │ ├── r_decal_volume.h │ ├── r_decal_volume_load_obj.cpp │ ├── r_decal_volume_load_obj.h │ ├── r_decal_volume_model.cpp │ ├── r_decal_volume_shared.h │ ├── r_deferred_effect_lighting.cpp │ ├── r_devgui.cpp │ ├── r_device_d3d12.cpp │ ├── r_device_d3d12.h │ ├── r_dobj_skin.cpp │ ├── r_dof_physical.cpp │ ├── r_dpvs.cpp │ ├── r_dpvs.h │ ├── r_dpvs_dynmodel.cpp │ ├── r_dpvs_entity.cpp │ ├── r_dpvs_sceneent.cpp │ ├── r_dpvs_static.cpp │ ├── r_draw_bsp.cpp │ ├── r_draw_camera.cpp │ ├── r_draw_code.cpp │ ├── r_draw_glass.cpp │ ├── r_draw_material.cpp │ ├── r_draw_material.h │ ├── r_draw_model.h │ ├── r_draw_spotshadow.cpp │ ├── r_draw_staticmodel.cpp │ ├── r_draw_sunshadow.cpp │ ├── r_draw_superterrain.cpp │ ├── r_draw_xmodel.cpp │ ├── r_drawlist.cpp │ ├── r_drawlistiter.cpp │ ├── r_drawlisttype.cpp │ ├── r_drawlisttype.h │ ├── r_drawsurf.cpp │ ├── r_drawsurfiter.h │ ├── r_drone_camera.cpp │ ├── r_dvars.cpp │ ├── r_dxalloc_log.cpp │ ├── r_dynamic_lightsets.cpp │ ├── r_edtaa3.cpp │ ├── r_entity_data_buffer.cpp │ ├── r_eye_sensor.cpp │ ├── r_fence_xb3.h │ ├── r_flare.cpp │ ├── r_fog_spline.cpp │ ├── r_font.cpp │ ├── r_font_icons.cpp │ ├── r_fontcache.cpp │ ├── r_formats.cpp │ ├── r_frustum_grid_clustering.cpp │ ├── r_frustum_lights.cpp │ ├── r_glass.cpp │ ├── r_glasssurf.cpp │ ├── r_glasssurfiter.h │ ├── r_gpu_pipeline.cpp │ ├── r_gpu_sort.cpp │ ├── r_gpu_timer.cpp │ ├── r_gpu_timer.h │ ├── r_gpu_timer_tree.cpp │ ├── r_gpu_timer_tree.h │ ├── r_gpu_timer_tree_query_dx12.h │ ├── r_gpu_timer_view.cpp │ ├── r_gpu_timer_view.h │ ├── r_hdr_debug.cpp │ ├── r_hdr_grading_clut_image.cpp │ ├── r_hdr_scopes.cpp │ ├── r_hw_resolve_dx12.cpp │ ├── r_image.cpp │ ├── r_image_db.h │ ├── r_image_format_exr.cpp │ ├── r_image_format_exr_write.cpp │ ├── r_image_format_stream.cpp │ ├── r_image_load_common.cpp │ ├── r_image_load_common.h │ ├── r_image_load_obj.cpp │ ├── r_image_utils.cpp │ ├── r_immediate_context_lock.cpp │ ├── r_init.cpp │ ├── r_jpeg.cpp │ ├── r_label.cpp │ ├── r_light.cpp │ ├── r_light_sensor.cpp │ ├── r_light_tweak.cpp │ ├── r_lightgrid_volumes.cpp │ ├── r_lightgrid_volumes_atlas.cpp │ ├── r_lightgrid_volumes_packer.h │ ├── r_lightmap.cpp │ ├── r_lightmap_atlas.cpp │ ├── r_local.h │ ├── r_macroclut.cpp │ ├── r_marks.cpp │ ├── r_material.cpp │ ├── r_material_consts.cpp │ ├── r_material_inline.h │ ├── r_material_load_obj.cpp │ ├── r_mayhem.cpp │ ├── r_mdao.cpp │ ├── r_meshdata.cpp │ ├── r_meshdata_inline.h │ ├── r_meshdata_lightmap_packer.h │ ├── r_model.cpp │ ├── r_model.h │ ├── r_model_data.cpp │ ├── r_model_marks.cpp │ ├── r_model_pose.cpp │ ├── r_model_skin.cpp │ ├── r_overdraw_overlay.cpp │ ├── r_primarylights.cpp │ ├── r_profile.cpp │ ├── r_profile.h │ ├── r_reactive_motion.cpp │ ├── r_reactive_motion.h │ ├── r_reflection_probe.cpp │ ├── r_reflection_probe_bsp_utils.cpp │ ├── r_reflection_probe_capture.cpp │ ├── r_reflection_probe_compression.cpp │ ├── r_reflection_probe_filtering.cpp │ ├── r_reflection_probe_generate.cpp │ ├── r_reflection_probe_relighting.cpp │ ├── r_remote_screen_update.cpp │ ├── r_render_to_texture.cpp │ ├── r_rendercmds.cpp │ ├── r_rendercmds.h │ ├── r_rendertarget.cpp │ ├── r_resolve.cpp │ ├── r_rt_common.h │ ├── r_rt_common_impl.h │ ├── r_rt_dxresource_impl.h │ ├── r_rt_esram_impl.h │ ├── r_rt_globals.h │ ├── r_rt_globals_impl.h │ ├── r_rt_handle.h │ ├── r_rt_heap_impl.h │ ├── r_rt_manager.h │ ├── r_rt_manager_impl.h │ ├── r_rt_tracking_impl.h │ ├── r_rt_util_impl.h │ ├── r_runtime_compression.cpp │ ├── r_scene.cpp │ ├── r_scene_api.h │ ├── r_screenshot.cpp │ ├── r_screenshot_data.cpp │ ├── r_screenshot_utils.cpp │ ├── r_setstate_d3d.cpp │ ├── r_setstate_d3d.h │ ├── r_sh_lighting.cpp │ ├── r_shade.cpp │ ├── r_sky.cpp │ ├── r_smodelsurfiter.h │ ├── r_sortsurfs.h │ ├── r_spotshadow.cpp │ ├── r_st.cpp │ ├── r_st_clutter.cpp │ ├── r_st_debug.cpp │ ├── r_st_drawsurf.cpp │ ├── r_st_drawsurfiter.h │ ├── r_st_load_obj.cpp │ ├── r_stages.cpp │ ├── r_state.cpp │ ├── r_state.h │ ├── r_state_utils.cpp │ ├── r_state_vertex.cpp │ ├── r_staticmodel.cpp │ ├── r_staticmodel.h │ ├── r_stats.cpp │ ├── r_subdiv.cpp │ ├── r_sunshadow.cpp │ ├── r_sunshadow.h │ ├── r_surfiter.h │ ├── r_taskgraph_compile.cpp │ ├── r_taskgraph_compile_barriers.cpp.h │ ├── r_taskgraph_compile_heap.cpp.h │ ├── r_taskgraph_debug.cpp │ ├── r_taskgraph_def.cpp │ ├── r_taskgraph_def.h │ ├── r_taskgraph_render.cpp │ ├── r_taskgraph_render_barriers.cpp.h │ ├── r_taskgraph_setup.cpp │ ├── r_testmonkeycmds.cpp │ ├── r_texture.cpp │ ├── r_thermal.cpp │ ├── r_types_d3d.h │ ├── r_ui_clut.cpp │ ├── r_umbra_dpvs.cpp │ ├── r_umbra_dpvs.h │ ├── r_unified_geo_buffers.cpp │ ├── r_universal_clut.cpp │ ├── r_utils.cpp │ ├── r_variable_rate_shading.h │ ├── r_volumetric.cpp │ ├── r_warn.cpp │ ├── r_whitebalance.cpp │ ├── r_workercmds_common.cpp │ ├── r_xsurface.cpp │ ├── r_xsurface.h │ ├── rb_backend.cpp │ ├── rb_backend.h │ ├── rb_chroma.cpp │ ├── rb_cpu_timeline_prof_view.cpp │ ├── rb_data_copier.cpp │ ├── rb_data_copier.h │ ├── rb_debug.cpp │ ├── rb_distortion.cpp │ ├── rb_dof_physical.cpp │ ├── rb_draw3d.cpp │ ├── rb_drawprofile.cpp │ ├── rb_drone_camera.cpp │ ├── rb_flare.cpp │ ├── rb_fog.cpp │ ├── rb_hdr_to_sdr.cpp │ ├── rb_hudoutline.cpp │ ├── rb_imagefilter.cpp │ ├── rb_lens_profiles.h │ ├── rb_light.cpp │ ├── rb_mdao.cpp │ ├── rb_motionblur.cpp │ ├── rb_nvidia_variable_rate_shading.cpp │ ├── rb_perceptual.cpp │ ├── rb_postaa.cpp │ ├── rb_postfx.cpp │ ├── rb_query.cpp │ ├── rb_remote_screen_update.cpp │ ├── rb_shade.cpp │ ├── rb_sky.cpp │ ├── rb_spotshadow.cpp │ ├── rb_ssao.cpp │ ├── rb_ssr.cpp │ ├── rb_sss.cpp │ ├── rb_state.cpp │ ├── rb_stats.cpp │ ├── rb_sunshadow.cpp │ ├── rb_tonemap.cpp │ ├── rb_utils.cpp │ ├── rb_velocity.cpp │ └── taskgraph │ │ ├── scripts │ │ └── r_tgs_misc.h │ │ └── tasks │ │ ├── r_tgt_decal_volume.h │ │ ├── r_tgt_dof_physical.h │ │ ├── r_tgt_dxr.h │ │ ├── r_tgt_effect_lighting.h │ │ ├── r_tgt_fidelity_fx_sharpening.cpp │ │ ├── r_tgt_fidelity_fx_sharpening.h │ │ ├── r_tgt_frustum_lights.h │ │ ├── r_tgt_gpu_pipeline.h │ │ ├── r_tgt_lightgrid_volumes.h │ │ ├── r_tgt_mayhem_selfvis.h │ │ ├── r_tgt_mblur.h │ │ ├── r_tgt_mdao.h │ │ ├── r_tgt_misc.h │ │ ├── r_tgt_nvidia_vrs.h │ │ ├── r_tgt_perceptual.h │ │ ├── r_tgt_reflection_probe.h │ │ ├── r_tgt_resolve.h │ │ ├── r_tgt_smaa.h │ │ ├── r_tgt_ssao.h │ │ ├── r_tgt_sss.h │ │ ├── r_tgt_tonemap.h │ │ ├── r_tgt_volumetric.h │ │ ├── r_tgt_vrs.h │ │ ├── r_tgt_world_emissive.h │ │ ├── r_tgt_world_opaque.h │ │ ├── r_tgt_world_prepass.h │ │ ├── r_tgt_world_shadow.h │ │ ├── r_tgt_world_spotshadow.cpp │ │ ├── r_tgt_world_spotshadow.h │ │ └── r_tgt_world_trans.h │ ├── igame_iw8 │ ├── bgame │ │ ├── bg_example_system_class.cpp │ │ ├── bg_example_system_class.h │ │ ├── bg_example_system_functions.cpp │ │ ├── bg_gameinterface.cpp │ │ └── bg_gameinterface_gamemodes_gs.cpp │ ├── cgame │ │ ├── cg_example_system_class.cpp │ │ ├── cg_example_system_class.h │ │ ├── cg_example_system_functions.cpp │ │ └── cg_gameinterface.cpp │ ├── game │ │ ├── g_example_system_class.cpp │ │ ├── g_example_system_functions.cpp │ │ └── g_gameinterface.cpp │ └── stubs │ │ └── game_stubs_iw8.cpp │ ├── iwmem │ ├── gamelog │ │ ├── iwmem_allocator.cpp │ │ ├── iwmem_allocator_manager.cpp │ │ ├── iwmem_allocator_table.cpp │ │ ├── iwmem_allocator_table_entry.cpp │ │ ├── iwmem_allocator_table_entry.h │ │ ├── iwmem_allocator_table_pool.cpp │ │ ├── iwmem_block.h │ │ ├── iwmem_callstack_hash.cpp │ │ ├── iwmem_dump_allocator_detail.cpp │ │ ├── iwmem_dump_allocator_summary.cpp │ │ ├── iwmem_dump_common.cpp │ │ ├── iwmem_dump_hierarchy.cpp │ │ ├── iwmem_dump_profile_tree.cpp │ │ ├── iwmem_dump_size_tree.cpp │ │ ├── iwmem_hud.cpp │ │ ├── iwmem_internal_pool.cpp │ │ ├── iwmem_internal_pool.h │ │ ├── iwmem_profile_node.cpp │ │ └── iwmem_profile_tree.cpp │ ├── id │ │ ├── iwmem_dynamic_id.cpp │ │ ├── iwmem_fixed_id.cpp │ │ └── iwmem_id.h │ ├── iwmem.cpp │ └── iwmem_interface.h │ ├── leaderboard │ ├── com_leaderboard.cpp │ ├── leaderboard.cpp │ └── leaderboard_load_obj.cpp │ ├── los_precompute │ ├── los_precompute_system.cpp │ └── los_precompute_system.h │ ├── lua_integration │ └── lua_cod_support.cpp │ ├── luashared │ ├── luashared.cpp │ ├── luashared_datamodel.cpp │ ├── luashared_dvar.cpp │ ├── luashared_engine.cpp │ ├── luashared_lobby.cpp │ ├── luashared_playerdata.cpp │ ├── luashared_stringtable.cpp │ └── luashared_unlocks.cpp │ ├── lui │ ├── lui.cpp │ ├── lui_cod.cpp │ ├── lui_cod_budget.cpp │ ├── lui_cod_challenges.cpp │ ├── lui_cod_character.cpp │ ├── lui_cod_clientmodel.cpp │ ├── lui_cod_functions.cpp │ ├── lui_cod_game.cpp │ ├── lui_cod_lobby.cpp │ ├── lui_cod_mlg.cpp │ ├── lui_cod_mouse.cpp │ ├── lui_cod_networkinfo.cpp │ ├── lui_cod_onscreenkeyboard.cpp │ ├── lui_cod_playerdata.cpp │ ├── lui_cod_playlist.cpp │ ├── lui_cod_postmatch.cpp │ ├── lui_cod_social.cpp │ ├── lui_cod_streaming.cpp │ ├── lui_cod_tournament.cpp │ ├── lui_cod_weapon.cpp │ ├── lui_customelement_aarminimap.cpp │ ├── lui_customelement_anchored.cpp │ ├── lui_customelement_blood.cpp │ ├── lui_customelement_blur.cpp │ ├── lui_customelement_border.cpp │ ├── lui_customelement_calibration.cpp │ ├── lui_customelement_chyronblock.cpp │ ├── lui_customelement_cinematic.cpp │ ├── lui_customelement_fpscounter.cpp │ ├── lui_customelement_frontendcameramover.cpp │ ├── lui_customelement_grid.cpp │ ├── lui_customelement_headicons.cpp │ ├── lui_customelement_heartbeatsensor.cpp │ ├── lui_customelement_hudbounds.cpp │ ├── lui_customelement_imagestreamer.cpp │ ├── lui_customelement_line.cpp │ ├── lui_customelement_mask.cpp │ ├── lui_customelement_minimap.cpp │ ├── lui_customelement_mousecursor.cpp │ ├── lui_customelement_onentityspawner.cpp │ ├── lui_customelement_playernameplates.cpp │ ├── lui_customelement_prettynumber.cpp │ ├── lui_customelement_pulsearray.cpp │ ├── lui_customelement_radartargeting.cpp │ ├── lui_customelement_radialmenu.cpp │ ├── lui_customelement_radialprogressbar.cpp │ ├── lui_customelement_radialsensor.cpp │ ├── lui_customelement_repeatedimage.cpp │ ├── lui_customelement_safearea.cpp │ ├── lui_customelement_scopereticleparallaxer.cpp │ ├── lui_customelement_scopereticlespacer.cpp │ ├── lui_customelement_scoreboardrow.cpp │ ├── lui_customelement_screencenterfade.cpp │ ├── lui_customelement_stackedlayout.cpp │ ├── lui_customelement_styledtext.cpp │ ├── lui_customelement_textedit.cpp │ ├── lui_customelement_threatmeter.cpp │ ├── lui_customelement_weaponmodel.cpp │ ├── lui_customelement_worldscaling.cpp │ ├── lui_customelements.cpp │ ├── lui_customelements.h │ ├── lui_databinding.cpp │ ├── lui_databinding_equipment.cpp │ ├── lui_databinding_frontend.cpp │ ├── lui_databinding_hud.cpp │ ├── lui_databinding_interactions.cpp │ ├── lui_databinding_netperf.cpp │ ├── lui_databinding_player.cpp │ ├── lui_databinding_telemetry.cpp │ ├── lui_databinding_voicechat.cpp │ ├── lui_databinding_weapon.cpp │ ├── lui_datamodel.cpp │ ├── lui_datamodel_subscriptionsholder.cpp │ ├── lui_ddl.cpp │ ├── lui_fencing_functions.cpp │ ├── lui_math.cpp │ ├── lui_playercard_functions.cpp │ ├── lui_pool.h │ ├── lui_quadcache.cpp │ ├── lui_quadcache.h │ ├── lui_render.cpp │ ├── lui_text_autoscroll.cpp │ ├── lui_traces.cpp │ ├── lui_tween.cpp │ ├── lui_workercmd_gc.cpp │ └── lui_workers.cpp │ ├── lui_mp │ ├── lui_cod_game_mp.cpp │ ├── lui_cod_leaderboards.cpp │ ├── lui_customelement_navbarhud.cpp │ ├── lui_customelement_onentityspawner_mp.cpp │ ├── lui_databinding_live.cpp │ ├── lui_databinding_lobby.cpp │ ├── lui_databinding_match.cpp │ ├── lui_databinding_mp.cpp │ └── lui_databinding_social.cpp │ ├── lui_sp │ ├── lui_cod_game_sp.cpp │ └── lui_customelement_onentityspawner_sp.cpp │ ├── membudget │ ├── membudget_budgetfile.cpp │ ├── membudget_contentmem_read.cpp │ ├── membudget_contentmem_write.cpp │ ├── membudget_hud.cpp │ ├── membudget_poll.cpp │ ├── membudget_project.cpp │ ├── membudget_types.cpp │ └── membudget_types.h │ ├── memory │ ├── mem_error.cpp │ ├── mem_esram_xb3.cpp │ ├── mem_hunkdebug.cpp │ ├── mem_hunkuser.cpp │ ├── mem_largelocal.cpp │ ├── mem_newdeleteheap.cpp │ ├── mem_ownership.cpp │ ├── mem_paged.cpp │ ├── mem_pagetree.h │ ├── mem_pmem.cpp │ ├── mem_pmem.h │ └── mem_virtual.cpp │ ├── mocap │ └── mocapxanimnode.cpp │ ├── netconstbaselines │ └── netconstbaselines.cpp │ ├── netconststrings │ ├── netconststrings.cpp │ └── netconststrings_dvar.cpp │ ├── online │ ├── cachedcontentcompression.cpp │ ├── cachedcontentcompression.h │ ├── cachedcontentcrypto.cpp │ ├── cachedcontentcrypto.h │ ├── cachedcontentiostream.cpp │ ├── cachedcontentiostream.h │ ├── challengeresponsehsm_base.cpp │ ├── challengeresponsehsm_default.cpp │ ├── crosslaunchhsm_base.cpp │ ├── fence_manager.cpp │ ├── fence_manager.h │ ├── fence_objects.cpp │ ├── ingamestore_hookup.cpp │ ├── invitationhsm_base.cpp │ ├── invitationhsm_xb3.cpp │ ├── invitejoinhsm_common.cpp │ ├── invitejoinhsm_common.h │ ├── live_anticheat.cpp │ ├── live_common.cpp │ ├── live_fences.cpp │ ├── live_heuristics.cpp │ ├── live_tracker.cpp │ ├── liveparty_common.cpp │ ├── memory_hash.cpp │ ├── memory_hash.h │ ├── mlg_gamebattles.cpp │ ├── online_aar.cpp │ ├── online_aar.h │ ├── online_ab_testing.cpp │ ├── online_ab_testing.h │ ├── online_account_registration.cpp │ ├── online_account_registration.h │ ├── online_addr.cpp │ ├── online_analytics_streamer.cpp │ ├── online_bandwidthtest.cpp │ ├── online_bandwidthtest.h │ ├── online_battlepass.cpp │ ├── online_battlepass.h │ ├── online_blocklistsystem.cpp │ ├── online_blocklistsystem.h │ ├── online_blocklistsystem_xb3.cpp │ ├── online_cachedcontentstreamer.cpp │ ├── online_cachedcontentstreamer.h │ ├── online_challenges.cpp │ ├── online_challenges.h │ ├── online_challenges_inline.h │ ├── online_chat.cpp │ ├── online_chat.h │ ├── online_chat_manager.cpp │ ├── online_chat_manager.h │ ├── online_chat_types.h │ ├── online_clan.cpp │ ├── online_clan.h │ ├── online_clans_manager.cpp │ ├── online_clans_manager.h │ ├── online_commerce.cpp │ ├── online_commerce.h │ ├── online_commerce_xb3.cpp │ ├── online_common.cpp │ ├── online_commsassetcategory.cpp │ ├── online_commsassetcategory.h │ ├── online_commsassetloader.cpp │ ├── online_commsassetloader.h │ ├── online_community_challenges.cpp │ ├── online_community_challenges.h │ ├── online_config_dvars.h │ ├── online_connection_history.cpp │ ├── online_crosslaunchhsm_common.cpp │ ├── online_crosslaunchhsm_xb3.cpp │ ├── online_daily_churn_login.cpp │ ├── online_daily_churn_login.h │ ├── online_daily_login.cpp │ ├── online_daily_login.h │ ├── online_data_whitelisting.cpp │ ├── online_dcqos.cpp │ ├── online_devmap.cpp │ ├── online_error_manager.cpp │ ├── online_errorreporting.cpp │ ├── online_errorreporting.h │ ├── online_friends.cpp │ ├── online_friends.h │ ├── online_friends_crossplay.cpp │ ├── online_friends_xb3.cpp │ ├── online_groups.cpp │ ├── online_gunsmith.cpp │ ├── online_gunsmith.h │ ├── online_hardwaresurvey.cpp │ ├── online_hardwaresurvey.h │ ├── online_hardwaresurvey_xb3.cpp │ ├── online_invitation_manager.cpp │ ├── online_invitation_manager.h │ ├── online_invitations.cpp │ ├── online_logging_timeseries.cpp │ ├── online_loot.cpp │ ├── online_loot.h │ ├── online_loot_crates.cpp │ ├── online_loot_crates.h │ ├── online_match_data.cpp │ ├── online_matchmaker.cpp │ ├── online_matchmaker.h │ ├── online_matchmaker_telemetry.cpp │ ├── online_metplayer.cpp │ ├── online_metplayer.h │ ├── online_mgr.cpp │ ├── online_misc_challenges.cpp │ ├── online_misc_challenges.h │ ├── online_operator_challenges.cpp │ ├── online_operator_challenges.h │ ├── online_patchsystem.cpp │ ├── online_patchsystem.h │ ├── online_peermesh.cpp │ ├── online_platformblocklist.cpp │ ├── online_platformblocklist.h │ ├── online_player_data.cpp │ ├── online_presence_notifications.cpp │ ├── online_presence_notifications.h │ ├── online_private_match_id.cpp │ ├── online_progression.cpp │ ├── online_progression.h │ ├── online_qos.cpp │ ├── online_quests.cpp │ ├── online_quests.h │ ├── online_redeemables.cpp │ ├── online_regulations.cpp │ ├── online_regulations.h │ ├── online_scheduled_challenges.cpp │ ├── online_scheduled_challenges.h │ ├── online_skill.cpp │ ├── online_sticker_book_challenges.cpp │ ├── online_sticker_book_challenges.h │ ├── online_storage.cpp │ ├── online_storage.h │ ├── online_store.cpp │ ├── online_store.h │ ├── online_system.cpp │ ├── online_system.h │ ├── online_telemetry.cpp │ ├── online_tournament.cpp │ ├── online_tournament_sim.cpp │ ├── online_trials.cpp │ ├── online_trials.h │ ├── online_upsell.cpp │ ├── online_upsell.h │ ├── online_userid_map.cpp │ ├── online_userid_map_modules.cpp │ ├── online_userid_resolver.cpp │ ├── online_userlists.cpp │ ├── online_userlists.h │ ├── online_username_resolver.inl │ ├── online_utils.cpp │ ├── online_utils.h │ ├── online_voice.cpp │ ├── onlineerrordata.cpp │ ├── patchstreamermanifest.cpp │ ├── pooled_storage_file_manager.cpp │ ├── proto │ │ └── online_protobuf_serialization.h │ ├── publisher_variables.cpp │ ├── publisher_variables.h │ ├── sv_online_tournament.cpp │ ├── ui_userid_resolver.cpp │ ├── ui_username_resolver.cpp │ ├── userlist.cpp │ ├── userlist.h │ ├── videostreaming │ │ ├── online_videostreaming.cpp │ │ ├── online_videostreaming.h │ │ └── xb3 │ │ │ └── online_videostreaming_xb3.cpp │ └── xuid.cpp │ ├── patchcollision │ ├── patchcollision.cpp │ └── patchcollision_debug.cpp │ ├── physics │ ├── private │ │ ├── core │ │ │ ├── cg_physicscharacterproxy.cpp │ │ │ ├── cg_physicsobject.cpp │ │ │ ├── g_physicscharacterproxy.cpp │ │ │ ├── g_physicsobject.cpp │ │ │ ├── physics.cpp │ │ │ ├── physicsbodyidvector.cpp │ │ │ ├── physicscage.cpp │ │ │ ├── physicscharacterproxy.cpp │ │ │ ├── physicscoverwall.cpp │ │ │ ├── physicsforceaction.cpp │ │ │ ├── physicsfx.cpp │ │ │ ├── physicsfxassets.cpp │ │ │ ├── physicsfxdebug.cpp │ │ │ ├── physicsgravitymodifier.cpp │ │ │ ├── physicsmanifoldcallback.cpp │ │ │ ├── physicsperformanceraycaster.cpp │ │ │ ├── physicsperformancetracker.cpp │ │ │ ├── physicsquery.cpp │ │ │ ├── physicsscript.cpp │ │ │ ├── physicssimplecollisioncallback.cpp │ │ │ ├── physicssvfx.cpp │ │ │ ├── physicsutilities.cpp │ │ │ ├── physicsvehicle.cpp │ │ │ └── physicsvolume.cpp │ │ └── havok │ │ │ ├── havokphysics.cpp │ │ │ ├── havokphysicscage.cpp │ │ │ ├── havokphysicscollisionfilter.cpp │ │ │ ├── havokphysicscollisionfilter.h │ │ │ ├── havokphysicscollisionheatmapviewer.cpp │ │ │ ├── havokphysicscollisionheatmapviewer.h │ │ │ ├── havokphysicscollisionquerydispatchers.cpp │ │ │ ├── havokphysicscollisionquerydispatchers.h │ │ │ ├── havokphysicscollisiontileviewer.cpp │ │ │ ├── havokphysicscollisiontileviewer.h │ │ │ ├── havokphysicsdebugdrawviewer.cpp │ │ │ ├── havokphysicsdebugdrawviewer.h │ │ │ ├── havokphysicsdetailtracemodifier.cpp │ │ │ ├── havokphysicsdetailtracemodifier.h │ │ │ ├── havokphysicsdisplayhandler.cpp │ │ │ ├── havokphysicserror.cpp │ │ │ ├── havokphysicserror.h │ │ │ ├── havokphysicsfreelistallocator.cpp │ │ │ ├── havokphysicsfreelistmemorysystem.cpp │ │ │ ├── havokphysicsfreelistmemorysystem.h │ │ │ ├── havokphysicsfx.cpp │ │ │ ├── havokphysicsfx.h │ │ │ ├── havokphysicsfxassets.cpp │ │ │ ├── havokphysicsfxdebug.cpp │ │ │ ├── havokphysicsglobaltypecompendium.cpp │ │ │ ├── havokphysicshitcollectors.cpp │ │ │ ├── havokphysicshitcollectors.h │ │ │ ├── havokphysicsimplementationinterface.inl │ │ │ ├── havokphysicsinstancemanager.cpp │ │ │ ├── havokphysicsinstancemanager.inl │ │ │ ├── havokphysicslargeblockallocator.cpp │ │ │ ├── havokphysicsmanifoldcallback.cpp │ │ │ ├── havokphysicsprocesshandler.cpp │ │ │ ├── havokphysicsprocesshandler.h │ │ │ ├── havokphysicsshapetagcodec.cpp │ │ │ ├── havokphysicsshapeviewer.cpp │ │ │ ├── havokphysicsshapeviewer.h │ │ │ ├── havokphysicssimplecollisioncallback.cpp │ │ │ ├── havokphysicssimulationsnapshotutil.cpp │ │ │ ├── havokphysicssvfx.cpp │ │ │ ├── havokphysicssvfx.h │ │ │ ├── havokphysicsthreadmemory.cpp │ │ │ ├── havokphysicsthreadpool.cpp │ │ │ ├── havokphysicsthreadpool.h │ │ │ └── havokphysicsworld.h │ └── public │ │ ├── g_physicsobject.inl │ │ ├── physics.h │ │ ├── physics_internal.h │ │ └── physicsimplementationinterface.inl │ ├── playercards │ ├── playercards_client.cpp │ └── playercards_data.cpp │ ├── qcommon │ ├── bitarray.h │ ├── bitarray_unittest.cpp │ ├── bitarrayiterator.h │ ├── buildnumber.c │ ├── checksum.cpp │ ├── checksum.h │ ├── client_api_inline.h │ ├── cm_load.cpp │ ├── cm_load_obj.cpp │ ├── cm_mesh.cpp │ ├── cm_showcollision.cpp │ ├── cm_test.cpp │ ├── cm_trace.cpp │ ├── cm_tracebox.cpp │ ├── cm_trigger.cpp │ ├── cmd.cpp │ ├── cmd.h │ ├── com_activeset.cpp │ ├── com_bootcheck.cpp │ ├── com_bsp.cpp │ ├── com_bsp_api.h │ ├── com_bsp_load_obj.cpp │ ├── com_challenges.cpp │ ├── com_character_limits.cpp │ ├── com_character_limits.h │ ├── com_circular_buffer.cpp │ ├── com_circular_buffer.h │ ├── com_client_platform.cpp │ ├── com_configs.cpp │ ├── com_contentserver_cache.cpp │ ├── com_csv_writer.cpp │ ├── com_dcache.cpp │ ├── com_dcache_io.cpp │ ├── com_dcache_toc.cpp │ ├── com_dedi_map_check.cpp │ ├── com_dense_grid.cpp │ ├── com_emergency_mem.cpp │ ├── com_error.cpp │ ├── com_fastfile.cpp │ ├── com_fastfile_zonelist.h │ ├── com_fileaccess.cpp │ ├── com_frontend.cpp │ ├── com_frontend_scene.cpp │ ├── com_gameinfo.cpp │ ├── com_gamemode.cpp │ ├── com_gamemode_app.cpp │ ├── com_gamestart.cpp │ ├── com_inline.h │ ├── com_keys.cpp │ ├── com_level_list.cpp │ ├── com_loadutils.cpp │ ├── com_map_load_errors.cpp │ ├── com_memorycard.cpp │ ├── com_mlg.cpp │ ├── com_motd.cpp │ ├── com_one_level_skip_list.h │ ├── com_player_data.cpp │ ├── com_player_utils.cpp │ ├── com_playerprofile.cpp │ ├── com_playlists.cpp │ ├── com_profilemapload.cpp │ ├── com_profilemapload.h │ ├── com_rank.cpp │ ├── com_scopedcriticalsection.cpp │ ├── com_screenshot_savegame.cpp │ ├── com_storage.cpp │ ├── com_storage_contentserver.cpp │ ├── com_storage_contentserver.h │ ├── com_storage_download.cpp │ ├── com_storage_inline.h │ ├── com_storage_upload.cpp │ ├── com_streaming.cpp │ ├── com_streamsync_mp.cpp │ ├── com_streamsync_mp.h │ ├── com_tasks.cpp │ ├── com_teams.cpp │ ├── com_teams.h │ ├── common.cpp │ ├── console_mp.cpp │ ├── cpu_timeline_prof.cpp │ ├── cpu_timeline_prof.h │ ├── dobj_management.cpp │ ├── dobj_management.h │ ├── dvar_cmds.cpp │ ├── fakebandwidth.cpp │ ├── fakelag.cpp │ ├── graph.cpp │ ├── huffman.cpp │ ├── md4.cpp │ ├── migration.cpp │ ├── msg.cpp │ ├── msg.h │ ├── msg_write_mp.h │ ├── net_address.cpp │ ├── net_backlog.cpp │ ├── net_buffer.h │ ├── net_burst.cpp │ ├── net_burst.h │ ├── net_chan_mp.cpp │ ├── net_chan_telemetry.cpp │ ├── net_channel.cpp │ ├── net_channel_buffer.cpp │ ├── net_connection.cpp │ ├── net_connection_buffer.cpp │ ├── net_debugsockets.cpp │ ├── net_dvar_info.cpp │ ├── net_endpoint.cpp │ ├── net_endpoint_buffer.cpp │ ├── net_graveyard.cpp │ ├── net_init.cpp │ ├── net_listener_ms.cpp │ ├── net_loopback.cpp │ ├── net_main.cpp │ ├── net_ping.cpp │ ├── net_relay.cpp │ ├── net_security.cpp │ ├── net_session.cpp │ ├── net_session_buffer.cpp │ ├── net_stats.cpp │ ├── net_telemetry.cpp │ ├── net_thread.cpp │ ├── net_transfer_window.cpp │ ├── radiant_remote.cpp │ ├── radiant_remote_lighting.cpp │ ├── rawfile_db.cpp │ ├── statmonitor.cpp │ ├── string.h │ ├── sys_common.cpp │ ├── sys_debugmessage.cpp │ ├── sys_debugmessage.pb-c.cpp │ ├── sys_moduleinfo_msvc.cpp │ ├── sys_profile.cpp │ ├── sys_profile.h │ ├── sys_workercmds.cpp │ ├── sys_workercmds_decl.h │ ├── threads.cpp │ ├── threads_interlock.h │ ├── threads_interlock_pc.h │ └── threads_rwlock.h │ ├── qcommon_mp │ ├── com_gamemode_app_mp.cpp │ ├── common_mp.cpp │ ├── msg_mp.cpp │ ├── msg_mp_netfields.cpp │ ├── msg_mp_netfields_gen.cpp │ ├── msg_mp_usercmd.cpp │ └── sv_msg_write_mp.cpp │ ├── qcommon_sp │ ├── com_gamemode_app_sp.cpp │ ├── common_sp.cpp │ └── msg_sp.cpp │ ├── qqtech │ └── ac_matchdata.cpp │ ├── ragdoll │ ├── ragdoll.cpp │ ├── ragdoll.inl │ ├── ragdoll_pose_controller.cpp │ ├── ragdoll_update.cpp │ └── ragdoll_xanimnode.cpp │ ├── regions │ └── regions_interface.cpp │ ├── renderer │ └── tr_types.h │ ├── restrequestmgr │ ├── httpheap.cpp │ ├── restrequestmgr.cpp │ └── restrequestmgr.h │ ├── rumble │ ├── rumble.cpp │ └── rumble_load_obj.cpp │ ├── scr_lex.h │ ├── scr_lex.txt │ ├── scr_yacc.txt │ ├── script │ ├── g_scr_load_obj_sp_entry.cpp │ ├── scr_animtree.cpp │ ├── scr_animtree_parser.cpp │ ├── scr_bytecode_util.h │ ├── scr_codepos.cpp │ ├── scr_compile_util.cpp │ ├── scr_compiler.cpp │ ├── scr_compiler_strings.cpp │ ├── scr_context.cpp │ ├── scr_context.h │ ├── scr_debugdata.cpp │ ├── scr_debugger.cpp │ ├── scr_disassembler.cpp │ ├── scr_entry.cpp │ ├── scr_evaluate.cpp │ ├── scr_export.h │ ├── scr_func_names_enum_server.cpp │ ├── scr_load_utils.cpp │ ├── scr_main.cpp │ ├── scr_memory.cpp │ ├── scr_memorytree.cpp │ ├── scr_memorytree.h │ ├── scr_native_library.cpp │ ├── scr_opaque_strings.cpp │ ├── scr_parser.cpp │ ├── scr_parsetree.cpp │ ├── scr_readwrite.cpp │ ├── scr_stringlist.cpp │ ├── scr_stringlist.h │ ├── scr_tempmemory.cpp │ ├── scr_variable.cpp │ ├── scr_variable.h │ ├── scr_variable_local.h │ ├── scr_variable_types.h │ └── scr_vm.cpp │ ├── scriptable │ ├── scriptable_allocator.cpp │ ├── scriptable_analytics.cpp │ ├── scriptable_client.cpp │ ├── scriptable_client_damage.cpp │ ├── scriptable_client_dynent.cpp │ ├── scriptable_client_link.cpp │ ├── scriptable_client_model.cpp │ ├── scriptable_client_utility.cpp │ ├── scriptable_client_utility.h │ ├── scriptable_common.cpp │ ├── scriptable_common_utility.h │ ├── scriptable_dynamic_limits.cpp │ ├── scriptable_game_bg.cpp │ ├── scriptable_game_bg.h │ ├── scriptable_game_bg_assets.cpp │ ├── scriptable_game_bg_damage.cpp │ ├── scriptable_game_bg_debug.cpp │ ├── scriptable_game_bg_eventstream_allocator.cpp │ ├── scriptable_game_cl.cpp │ ├── scriptable_game_sv.cpp │ ├── scriptable_load_def_obj.cpp │ ├── scriptable_load_obj.cpp │ ├── scriptable_load_query.h │ ├── scriptable_msg_read.cpp │ ├── scriptable_msg_read.h │ ├── scriptable_msg_write.cpp │ ├── scriptable_mychanges.cpp │ ├── scriptable_server.cpp │ ├── scriptable_server_damage.cpp │ ├── scriptable_server_link.cpp │ ├── scriptable_server_precache.cpp │ ├── scriptable_server_utility.cpp │ └── scriptable_server_utility.h │ ├── server │ ├── sv_bandwidth_profile.cpp │ ├── sv_ccmds.cpp │ ├── sv_client.h │ ├── sv_demo.cpp │ ├── sv_demo.h │ ├── sv_game.cpp │ ├── sv_game_globals.h │ ├── sv_gamemode_app.cpp │ ├── sv_gamemode_app.h │ ├── sv_init.cpp │ ├── sv_main.cpp │ ├── sv_persistent_globals.h │ ├── sv_profile.cpp │ ├── sv_profile.h │ ├── sv_timing.cpp │ └── sv_world.cpp │ ├── server_mp │ ├── sv_agent_fields.cpp │ ├── sv_agent_move.cpp │ ├── sv_agent_mp.cpp │ ├── sv_agent_scr.cpp │ ├── sv_anticheat_mp.cpp │ ├── sv_anticheat_mp.h │ ├── sv_bandwidth_limiter.cpp │ ├── sv_bot_gamedata_mp.cpp │ ├── sv_bot_mp.cpp │ ├── sv_bot_mp.h │ ├── sv_bot_scoring.cpp │ ├── sv_bot_scr.cpp │ ├── sv_bot_weapon.cpp │ ├── sv_ccmds_mp.cpp │ ├── sv_challenges.cpp │ ├── sv_client_mp.cpp │ ├── sv_client_mp.h │ ├── sv_client_net_perf_mp.cpp │ ├── sv_client_workers_mp.cpp │ ├── sv_demo_mp.cpp │ ├── sv_demo_mp.h │ ├── sv_entities_lod.cpp │ ├── sv_entities_partitioning.cpp │ ├── sv_entity_workers_mp.cpp │ ├── sv_game_globals_mp.h │ ├── sv_game_mp.cpp │ ├── sv_init_mp.cpp │ ├── sv_latency_profile_mp.cpp │ ├── sv_latency_test_mp.cpp │ ├── sv_live_mp.cpp │ ├── sv_main_mp.cpp │ ├── sv_migration.cpp │ ├── sv_net_chan_mp.cpp │ ├── sv_persistent_globals_mp.h │ ├── sv_scragent_mp.cpp │ ├── sv_snapshot_archive_mp.cpp │ ├── sv_snapshot_build_mp.cpp │ ├── sv_snapshot_caching.cpp │ ├── sv_snapshot_demo_mp.cpp │ ├── sv_snapshot_mp.cpp │ ├── sv_snapshot_mp.h │ ├── sv_snapshot_mp_types.h │ ├── sv_snapshot_profile_mp.cpp │ ├── sv_snapshot_workers_mp.cpp │ ├── sv_streamsync_mp.cpp │ ├── sv_transients_mp.cpp │ └── sv_usermove_workers_mp.cpp │ ├── server_sp │ ├── sv_ccmds_sp.cpp │ ├── sv_client_sp.cpp │ ├── sv_client_sp.h │ ├── sv_culled_sounds_sp.cpp │ ├── sv_demo_sp.cpp │ ├── sv_game_globals_sp.h │ ├── sv_game_sp.cpp │ ├── sv_init_sp.cpp │ ├── sv_main_sp.cpp │ ├── sv_preload_sp.cpp │ ├── sv_snapshot_sp.cpp │ └── sv_transients_sp.cpp │ ├── sessions │ ├── dwsessions.cpp │ ├── gamelobbysessionhsm.cpp │ ├── gamelobbysessionhsm_base.cpp │ ├── platformsessions.h │ ├── platformsessions_xb3.cpp │ ├── privatepartysessionhsm.cpp │ ├── privatepartysessionhsm_base.cpp │ └── sessions_common.cpp │ ├── snd │ ├── com_snd_biquad_eq.cpp │ ├── com_snd_biquad_eq.h │ ├── com_snd_radverb.cpp │ ├── sd.h │ ├── sd_alloc.cpp │ ├── sd_api.cpp │ ├── sd_bink.cpp │ ├── sd_decode.cpp │ ├── sd_decode_acp_xma.cpp │ ├── sd_decode_opus.cpp │ ├── sd_decode_rev.cpp │ ├── sd_delay.cpp │ ├── sd_dsp_buffer.h │ ├── sd_dsp_bufferops.h │ ├── sd_dsp_core.h │ ├── sd_dsp_interleavedbuffer.h │ ├── sd_dsp_sequentialbuffer.h │ ├── sd_mix_master.cpp │ ├── sd_mix_radverb.cpp │ ├── sd_mix_voice.cpp │ ├── sd_mixer.cpp │ ├── sd_output_libad.cpp │ ├── sd_peak_limiter.h │ ├── sd_source.cpp │ ├── sd_stream.cpp │ ├── sd_vehicle.cpp │ ├── sd_voice.cpp │ ├── snd.cpp │ ├── snd.h │ ├── snd_alias_db.h │ ├── snd_api.h │ ├── snd_asset_bank.cpp │ ├── snd_async.cpp │ ├── snd_bank.cpp │ ├── snd_bank_load.cpp │ ├── snd_channel_limit.cpp │ ├── snd_command.cpp │ ├── snd_db.cpp │ ├── snd_debug_draw.cpp │ ├── snd_deferred_playback.cpp │ ├── snd_devhost.cpp │ ├── snd_dsp.cpp │ ├── snd_dsp.h │ ├── snd_globals.cpp │ ├── snd_local.cpp │ ├── snd_log.cpp │ ├── snd_music.cpp │ ├── snd_player_breaths.cpp │ ├── snd_propagation.cpp │ ├── snd_public.cpp │ ├── snd_public.h │ ├── snd_queue.cpp │ ├── snd_resampler.cpp │ ├── snd_spatialize.cpp │ ├── snd_submix.cpp │ ├── snd_utils.cpp │ ├── snd_utils.h │ └── snd_weapon_reflect.cpp │ ├── social │ ├── live_presence_crosstitle.cpp │ ├── playercard_cache.cpp │ └── social_presence.cpp │ ├── soundents │ ├── soundentity.cpp │ ├── soundentity_client.cpp │ └── soundentity_server.cpp │ ├── spatialpartition │ ├── spatialpartition_population.cpp │ ├── spatialpartition_population_iterator.cpp │ ├── spatialpartition_population_test.cpp │ ├── spatialpartition_populationsort.cpp │ ├── spatialpartition_tree.cpp │ └── spatialpartition_tree_test.cpp │ ├── staticmodels │ ├── staticmodels.cpp │ ├── staticmodels_debug.cpp │ ├── staticmodels_havokshape.cpp │ ├── staticmodels_havokshape.h │ ├── staticmodels_havokshapeinternals.cpp │ ├── staticmodels_havokshapeinternals.h │ ├── staticmodels_havokshapekeymask.cpp │ └── staticmodels_havokshapekeymask.h │ ├── stream │ ├── stream.cpp │ ├── stream_alloc.cpp │ ├── stream_alwaysloaded.cpp │ ├── stream_backend_queue.cpp │ ├── stream_bits.cpp │ ├── stream_bits.h │ ├── stream_combine_tables.cpp │ ├── stream_combine_tables.h │ ├── stream_db_assethandlers.cpp │ ├── stream_db_load_unload.cpp │ ├── stream_debug.cpp │ ├── stream_decompressor.cpp │ ├── stream_defrag.cpp │ ├── stream_distance.h │ ├── stream_dvars.cpp │ ├── stream_hint.cpp │ ├── stream_image_record.cpp │ ├── stream_internal.h │ ├── stream_key_behavior.cpp │ ├── stream_level_init.cpp │ ├── stream_load_sync.cpp │ ├── stream_loader.cpp │ ├── stream_loader.h │ ├── stream_logger.cpp │ ├── stream_mini_distance.h │ ├── stream_primer.cpp │ ├── stream_read.cpp │ ├── stream_reader.cpp │ ├── stream_sort.cpp │ ├── stream_sortlist.h │ ├── stream_streamer_loan_heap.cpp │ ├── stream_touch.cpp │ ├── stream_tree.cpp │ ├── stream_tree_grid_material.cpp │ ├── stream_tree_grid_xmodel.cpp │ ├── stream_update.cpp │ ├── stream_viewpos.cpp │ ├── stream_viewpos.h │ ├── streamer_mem_loan.cpp │ └── streamer_mem_loan.h │ ├── stringed │ └── stringed_hooks.cpp │ ├── tasksystem │ ├── taskbreaker.cpp │ ├── taskmanager.cpp │ └── taskobjects.h │ ├── teambalance │ └── teambalance.cpp │ ├── tracers │ ├── tracer.cpp │ └── tracer_load_obj.cpp │ ├── turret │ ├── turret_client_ent.cpp │ └── turret_placement.cpp │ ├── ui │ ├── ui_atoms.cpp │ ├── ui_automation.cpp │ ├── ui_browser.cpp │ ├── ui_browser_xb3.cpp │ ├── ui_keyboard.cpp │ ├── ui_keyboard_xb3.cpp │ ├── ui_playlists.cpp │ ├── ui_screenshot.cpp │ └── ui_shared.cpp │ ├── ui_mp │ ├── ui_main_mp.cpp │ └── ui_party.cpp │ ├── universal │ ├── aabbtree.cpp │ ├── algo.h │ ├── arithmeticdecoder.cpp │ ├── assertive.cpp │ ├── async_request_queue.cpp │ ├── async_request_queue.h │ ├── bandwidth_counter.h │ ├── bdiff.cpp │ ├── binpack.h │ ├── blockallocator.cpp │ ├── bounds_float4.h │ ├── bounds_inline.h │ ├── bucketallocator.cpp │ ├── circular_buffer.h │ ├── clipboard.cpp │ ├── com_bitops.cpp │ ├── com_bitops.h │ ├── com_color.cpp │ ├── com_color.h │ ├── com_convexhull.cpp │ ├── com_cspline.cpp │ ├── com_cspline_debug.cpp │ ├── com_encode.cpp │ ├── com_files.cpp │ ├── com_float8_unittest.cpp │ ├── com_math.cpp │ ├── com_math.h │ ├── com_math_anglevectors.cpp │ ├── com_memory.cpp │ ├── com_memory.h │ ├── com_net.cpp │ ├── com_pack.cpp │ ├── com_presence.cpp │ ├── com_quat_inline.h │ ├── com_rle_compress.cpp │ ├── com_rslist.h │ ├── com_shared.cpp │ ├── com_stringtable.cpp │ ├── com_stringtable_obj.cpp │ ├── com_types.h │ ├── com_utf.cpp │ ├── com_vec_types.h │ ├── com_vector.h │ ├── com_vector4.h │ ├── com_vector4_pc.h │ ├── com_vector4_unittest.cpp │ ├── combofile.cpp │ ├── core_lib_hooks.cpp │ ├── crosstitledata_generated.h │ ├── dlc.cpp │ ├── dvar.cpp │ ├── dvar.h │ ├── dvar_api.h │ ├── edge_id.cpp │ ├── edge_octree.cpp │ ├── edge_octree.h │ ├── edgelist.cpp │ ├── fft.cpp │ ├── keycodes.cpp │ ├── launchdata.cpp │ ├── lean_rb_tree.h │ ├── memfile.cpp │ ├── memfile.h │ ├── mpsc_queue.h │ ├── mpsc_stream.h │ ├── mutex.cpp │ ├── packet_buffer.h │ ├── packet_stream.h │ ├── paged_heap.h │ ├── pmr_octree.cpp │ ├── pool_allocator.cpp │ ├── profile.cpp │ ├── profile.h │ ├── profile_csv.cpp │ ├── profile_mem.cpp │ ├── q_parse.cpp │ ├── q_shared.cpp │ ├── q_shared.h │ ├── q_shared_inline.h │ ├── q_string.cpp │ ├── q_string.h │ ├── redblacktree.h │ ├── reliablemsg.cpp │ ├── retry_timer.cpp │ ├── spsc_stream.h │ ├── stats_counter.h │ ├── stopwatch.h │ ├── streamfile.cpp │ ├── streaminginstall.cpp │ ├── string_util.cpp │ ├── string_util.h │ ├── stringhashvalidator.h │ ├── surfaceflags.cpp │ ├── sys_interface_impl.h │ ├── textureatlas.cpp │ ├── textureatlas.h │ ├── timer.cpp │ ├── timing.cpp │ ├── tomcrypt_mem.cpp │ ├── valuehistory.h │ └── win_common.cpp │ ├── vfx │ └── particles │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── particlecurve.h │ │ ├── particledb.h │ │ ├── particledebugdraw.cpp │ │ ├── particledvars.cpp │ │ ├── particleemitter.cpp │ │ ├── particleemitter.h │ │ ├── particleloadobj.cpp │ │ ├── particlemanager.cpp │ │ ├── particlemanager.h │ │ ├── particlemodule.cpp │ │ ├── particlemoduleinit.cpp │ │ ├── particlemoduletest.cpp │ │ ├── particlemoduleupdate.cpp │ │ ├── particleparser.cpp │ │ ├── particleprofile.cpp │ │ ├── particlerandom.h │ │ ├── particlescriptedinput.cpp │ │ ├── particlestate.cpp │ │ ├── particlestate.h │ │ ├── particlesystem.cpp │ │ ├── particlesystem.h │ │ ├── particletoolcommands.cpp │ │ ├── particleutil.cpp │ │ └── particleutil.h │ ├── voice │ ├── voice.cpp │ ├── voice_codec_opus.cpp │ ├── voice_decode.cpp │ ├── voice_decode_futz.cpp │ ├── voice_encode.cpp │ └── voice_types.h │ ├── win32 │ ├── win_files.cpp │ └── win_shared.cpp │ ├── worldcollision │ ├── worldcollision.cpp │ └── worldcollision_debug.cpp │ ├── xanim │ ├── dobj.cpp │ ├── dobj_skel.cpp │ ├── dobj_utils.cpp │ ├── mayhem.cpp │ ├── mayhem_public.h │ ├── nodes │ │ ├── xanimnode_aimblend.cpp │ │ ├── xanimnode_analog_clock.cpp │ │ ├── xanimnode_blendspace.h │ │ ├── xanimnode_blendspace1d.cpp │ │ ├── xanimnode_blendspace2d.cpp │ │ ├── xanimnode_blendspace_algo.cpp │ │ ├── xanimnode_blendspace_algo.h │ │ ├── xanimnode_blendspace_debug.cpp │ │ ├── xanimnode_ik_antislide.cpp │ │ ├── xanimnode_ik_ladder.cpp │ │ ├── xanimnode_ik_ladder_wm.cpp │ │ ├── xanimnode_ladder_climb.cpp │ │ ├── xanimnode_lookat.cpp │ │ ├── xanimnode_lookat_player.cpp │ │ ├── xanimnode_mayhem.cpp │ │ ├── xanimnode_mount.cpp │ │ ├── xanimnode_null.cpp │ │ ├── xanimnode_random.cpp │ │ ├── xanimnode_replication.cpp │ │ ├── xanimnode_replication.h │ │ ├── xanimnode_scrub.cpp │ │ ├── xanimnode_toggle.cpp │ │ ├── xanimnode_turret.cpp │ │ └── xanimnode_wobble.cpp │ ├── proceduralbones │ │ ├── proceduralbones_allocator.cpp │ │ ├── proceduralbones_calc.cpp │ │ ├── proceduralbones_debug.cpp │ │ ├── proceduralbones_dobj.cpp │ │ ├── proceduralbones_local.h │ │ ├── proceduralbones_physics.cpp │ │ └── proceduralbones_physics_collision.cpp │ ├── xanim.cpp │ ├── xanim_calc.cpp │ ├── xanim_client.h │ ├── xanim_client_inline.h │ ├── xanim_curve.cpp │ ├── xanim_curve_load_obj.cpp │ ├── xanim_ik.cpp │ ├── xanim_local.h │ ├── xanim_memory.cpp │ ├── xanim_memory.h │ ├── xanim_node.cpp │ ├── xanim_node.h │ ├── xanim_node_api.h │ ├── xanim_notetrack.h │ ├── xanim_public.h │ ├── xanim_public_inline.h │ ├── xanim_readwrite.cpp │ ├── xcam_load_obj.cpp │ ├── xcompositemodel.cpp │ ├── xmodel.cpp │ ├── xmodel_db.h │ ├── xmodel_utils.cpp │ └── xmodel_utils.h │ ├── xb3 │ ├── httprequest.cpp │ ├── xb3_application.cpp │ ├── xb3_application.h │ ├── xb3_bootdiagnostics.cpp │ ├── xb3_dataplatform.h │ ├── xb3_gamedvr.cpp │ ├── xb3_gameevents.cpp │ ├── xb3_gamepad.cpp │ ├── xb3_hw_zlib_decompress.cpp │ ├── xb3_input.cpp │ ├── xb3_keyboard.cpp │ ├── xb3_keyboard.h │ ├── xb3_live.cpp │ ├── xb3_liveparty.cpp │ ├── xb3_main.cpp │ ├── xb3_memorycard.cpp │ ├── xb3_mouse.cpp │ ├── xb3_mpmanager.cpp │ ├── xb3_net.cpp │ ├── xb3_plm.cpp │ ├── xb3_presence.cpp │ ├── xb3_privacy.cpp │ ├── xb3_restart_image.cpp │ ├── xb3_sessions.cpp │ ├── xb3_storage.cpp │ ├── xb3_users.cpp │ ├── xb3_utils.cpp │ ├── xb3_winrt.cpp │ ├── xb3_wrapbuffer.cpp │ └── xb3_xmemalloc.cpp │ ├── xpak │ └── xpak_game.cpp │ └── zlib │ ├── adler32.c │ ├── crc32.c │ ├── deflate.c │ ├── inffast.c │ ├── inflate.c │ ├── inftrees.c │ ├── trees.c │ └── zutil.c ├── game └── share │ └── raw │ └── shaders │ └── lib │ ├── fidelity_fx │ └── ffx_cas.h │ ├── fog_spline_cshared.hlsl │ └── superterrain_cshared_pack.hlsl └── shared ├── codware ├── core │ ├── core_assert.cpp │ ├── core_assert.h │ ├── core_bitset.h │ ├── core_checksum.cpp │ ├── core_color.h │ ├── core_error.cpp │ ├── core_gamma.h │ ├── core_math.cpp │ ├── core_math.h │ ├── core_print.cpp │ ├── core_string.cpp │ ├── core_string.h │ ├── core_types.h │ ├── core_vec_types.h │ ├── core_vector.h │ ├── core_vector4_sse.h │ ├── core_xhash.h │ ├── gsl │ │ └── span │ └── orientation.cpp ├── gfxcore │ └── gfxcorelight.h ├── iweffects │ ├── glass_crack_shard.cpp │ └── glass_crack_types.h ├── iwhavokphysics │ ├── classes │ │ └── types │ │ │ ├── havokphysicsasset_types.cxx │ │ │ ├── havokphysicsbodyqualitylist_types.cxx │ │ │ ├── havokphysicsmateriallist_types.cxx │ │ │ ├── havokphysicsmotionpropertieslist_types.cxx │ │ │ ├── havokphysicsshapelist_types.cxx │ │ │ ├── havokphysicsvehicletypes_types.cxx │ │ │ └── havokphysicsxmodellod_types.cxx │ ├── havokphysicsasset.h │ ├── havokphysicsshapelist.cpp │ ├── havokphysicsshapelist.hxx │ ├── havokphysicsvehicletypes.h │ └── havokphysicsxmodellod.cpp ├── sdk │ └── havok │ │ └── hk2018_2_0_r1 │ │ └── source │ │ ├── cloth │ │ └── cloth │ │ │ ├── transformset │ │ │ └── hcltransformset.h │ │ │ ├── utilities │ │ │ ├── instantiation │ │ │ │ └── hclinstantiationutil.h │ │ │ └── viewers │ │ │ │ └── hclclothcontext.h │ │ │ └── world │ │ │ └── hclworld.h │ │ ├── common │ │ ├── base │ │ │ ├── algorithm │ │ │ │ ├── noise │ │ │ │ │ └── hkperlinnoise2d.h │ │ │ │ └── sort │ │ │ │ │ └── hksort.inl │ │ │ ├── classlists │ │ │ │ └── hkregisterclasses.cxx │ │ │ ├── container │ │ │ │ ├── array │ │ │ │ │ ├── hkarray.h │ │ │ │ │ └── hkarray.inl │ │ │ │ ├── blockstream │ │ │ │ │ └── allocator │ │ │ │ │ │ └── fixed │ │ │ │ │ │ └── hkfixedblockstreamallocator.h │ │ │ │ ├── hash │ │ │ │ │ └── hkhashmap.h │ │ │ │ ├── localarray │ │ │ │ │ ├── hklocalarray.h │ │ │ │ │ └── hklocalbuffer.h │ │ │ │ └── pointermap │ │ │ │ │ ├── hkmap.h │ │ │ │ │ ├── hkmap.hxx │ │ │ │ │ ├── hkmap.inl │ │ │ │ │ └── hkpointermap.h │ │ │ ├── math │ │ │ │ ├── util │ │ │ │ │ └── hkpack.h │ │ │ │ └── vector │ │ │ │ │ └── hksimdfloat32.h │ │ │ ├── memory │ │ │ │ ├── allocator │ │ │ │ │ ├── freelist │ │ │ │ │ │ └── hkfreelistallocator.h │ │ │ │ │ ├── hkmemoryallocator.h │ │ │ │ │ └── largeblock │ │ │ │ │ │ └── hklargeblockallocator.h │ │ │ │ ├── router │ │ │ │ │ └── hkmemoryrouter.h │ │ │ │ └── system │ │ │ │ │ └── hkmemorysystem.h │ │ │ ├── monitor │ │ │ │ └── hkmonitorstream.inl │ │ │ ├── object │ │ │ │ └── hkreferencedobject.h │ │ │ ├── reflect │ │ │ │ ├── core │ │ │ │ │ ├── hkreflectdefs.h │ │ │ │ │ ├── hkreflectfuncs.inl │ │ │ │ │ ├── hkreflectvalue.inl │ │ │ │ │ └── hkreflectvar.inl │ │ │ │ └── impl │ │ │ │ │ └── hkbuiltinimpl.h │ │ │ ├── serialize │ │ │ │ ├── detail │ │ │ │ │ └── hkwritebuffer.h │ │ │ │ └── hkserialize.inl │ │ │ ├── thread │ │ │ │ ├── criticalsection │ │ │ │ │ └── hkcriticalsection.h │ │ │ │ ├── pool │ │ │ │ │ └── hkthreadpool.h │ │ │ │ └── taskqueue │ │ │ │ │ ├── default │ │ │ │ │ └── hkdefaulttaskqueue.h │ │ │ │ │ ├── hktask.h │ │ │ │ │ └── hktaskgraph.h │ │ │ └── types │ │ │ │ ├── geometry │ │ │ │ └── hkgeometry.h │ │ │ │ ├── hkbasetypes.h │ │ │ │ ├── hkrefptr.h │ │ │ │ ├── hkrefptr.inl │ │ │ │ ├── hksignalslots.h │ │ │ │ └── hksignalslots.hxx │ │ └── visualize │ │ │ ├── hkcommonprocesscontext.h │ │ │ ├── hkdebugdisplayhandler.h │ │ │ ├── hkprocess.h │ │ │ ├── hkprocesscontext.h │ │ │ ├── hkprocesshandler.h │ │ │ ├── hkserverobjecthandler.h │ │ │ └── hkvisualdebugger.h │ │ ├── geometry │ │ └── collide │ │ │ └── datastructures │ │ │ └── simdtree │ │ │ ├── hkcdsimdtree.h │ │ │ └── hkcdsimdtree.inl │ │ └── physics │ │ ├── constraint │ │ └── data │ │ │ ├── hkpconstraintdata.h │ │ │ ├── hkpconstraintdata.inl │ │ │ └── limitedhinge │ │ │ └── hkplimitedhingeconstraintdata.h │ │ └── physics │ │ ├── collide │ │ ├── filter │ │ │ └── hknpcollisionfilter.h │ │ ├── narrowphase │ │ │ └── detector │ │ │ │ └── convexconvex │ │ │ │ └── hknpconvexconvexcollisioncache.inl │ │ ├── query │ │ │ ├── collector │ │ │ │ ├── hknpallhitscollector.inl │ │ │ │ ├── hknpanyhitcollector.h │ │ │ │ ├── hknpclosesthitcollector.inl │ │ │ │ ├── hknpcollisionquerycollector.h │ │ │ │ ├── hknpflippedgetclosestpointsquerycollector.inl │ │ │ │ └── hknpflippedshapecastquerycollector.inl │ │ │ ├── dispatcher │ │ │ │ └── hknpcollisionquerydispatcher.inl │ │ │ ├── hknpcollisionquery.inl │ │ │ └── hknpshapecastfuncs.h │ │ └── shape │ │ │ ├── composite │ │ │ ├── compound │ │ │ │ ├── hknpcompoundshape.h │ │ │ │ └── hknpshapeinstance.inl │ │ │ └── mesh │ │ │ │ └── extern │ │ │ │ ├── hknpexternmeshshape.h │ │ │ │ └── hknpexternmeshshape.inl │ │ │ ├── convex │ │ │ ├── capsule │ │ │ │ └── hknpcapsuleshape.h │ │ │ ├── cylinder │ │ │ │ └── hknpcylindershape.h │ │ │ └── sphere │ │ │ │ └── hknpsphereshape.h │ │ │ ├── decorator │ │ │ └── masked │ │ │ │ └── hknpmaskedshape.h │ │ │ ├── hknpshapebuffer.h │ │ │ ├── hknpshapecollector.inl │ │ │ ├── hknpshapekeymask.h │ │ │ └── tagcodec │ │ │ └── hknpshapetagcodec.h │ │ ├── dynamics │ │ ├── body │ │ │ └── hknpbodyid.h │ │ ├── constraint │ │ │ └── breakable │ │ │ │ └── hknpbreakableconstraintdata.h │ │ ├── modifier │ │ │ └── hknpmodifier.h │ │ ├── simulation │ │ │ ├── hknpsimulationcontext.inl │ │ │ ├── multithreaded │ │ │ │ └── hknptaskgraph.h │ │ │ └── utils │ │ │ │ └── hknpstaticbodyreset.inl │ │ └── world │ │ │ └── hknpworld.h │ │ ├── extensions │ │ ├── actions │ │ │ └── hknpaction.h │ │ ├── viewers │ │ │ ├── hknpprocesscontext.h │ │ │ ├── hknpviewer.h │ │ │ └── shape │ │ │ │ └── hknpshapeviewer.h │ │ └── worldsnapshot │ │ │ └── hknpworldsnapshot.h │ │ └── particles │ │ └── hknpparticleshapelibrary.h └── ujson │ └── ujson.cpp └── cpp ├── cw_separable_sss └── cw_separable_sss.cpp ├── indyfs └── src │ ├── indyfs.cpp │ ├── indyfs_atomic.cpp │ ├── indyfs_condition_variable.cpp │ ├── indyfs_dir.cpp │ ├── indyfs_file.cpp │ ├── indyfs_filecache.cpp │ ├── indyfs_http.cpp │ ├── indyfs_http_queue.cpp │ ├── indyfs_image.cpp │ ├── indyfs_io_queue.cpp │ ├── indyfs_log.cpp │ ├── indyfs_lz4.c │ ├── indyfs_lz4frame.c │ ├── indyfs_lz4hc.c │ ├── indyfs_mutex.cpp │ ├── indyfs_mutex.h │ ├── indyfs_path.cpp │ ├── indyfs_process.cpp │ ├── indyfs_profiler.cpp │ ├── indyfs_statistics.cpp │ ├── indyfs_string.cpp │ ├── indyfs_thread.cpp │ ├── indyfs_time.cpp │ └── indyfs_xxhash.c ├── libad ├── ad.cpp ├── bk │ ├── ad_bk_containers.h │ ├── ad_bk_endpoint.cpp │ ├── ad_bk_endpoint.h │ ├── ad_bk_endpoint_ms.cpp │ ├── ad_bk_interface.cpp │ ├── ad_bk_interface_ms.cpp │ ├── ad_bk_interface_ms.h │ ├── ad_bk_masterbusmixer.cpp │ ├── ad_bk_mixbedconversions.h │ ├── ad_bk_platform_util.cpp │ ├── ad_bk_platform_util.h │ └── ad_bk_publictypes.h └── rt │ ├── ad_rt_api.cpp │ ├── ad_rt_containers.h │ ├── ad_rt_debug.cpp │ ├── ad_rt_logging.cpp │ ├── ad_rt_math.cpp │ ├── ad_rt_memory.cpp │ ├── ad_rt_process.cpp │ ├── ad_rt_public_user.h │ ├── ad_rt_types.h │ └── ad_rt_user.cpp ├── simplehttp └── src │ ├── simplehttp.cpp │ └── simplehttp_log.cpp └── taskgraph_compile ├── include └── taskgraph_compile │ └── compiler.h ├── source ├── compiler.cpp ├── resourcetracker.cpp └── task.cpp └── taskgraphcompilepch.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/README.md -------------------------------------------------------------------------------- /workspace/iw8/code_source/external/luasocket/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/external/luasocket/src/io.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/external/nujson/nujson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/external/nujson/nujson.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/external/nujson/nujson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/external/nujson/nujson.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jccolor.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jchuff.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcinit.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcparam.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcphuff.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jcsample.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdinput.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdphuff.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jdsample.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jerror.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jidctint.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jidctred.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jquant1.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jquant2.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/libjpeg/jutils.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/mjpeg/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/mjpeg/stb_image.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/ntl/ntl/array/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/ntl/ntl/array/array.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/ntl/ntl/tree/rb_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/ntl/ntl/tree/rb_tree.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/ntl/ntl/utility/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/ntl/ntl/utility/pair.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/ntl/ntl/utility/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/ntl/ntl/utility/sort.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/libs/tlsf/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/libs/tlsf/tlsf.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/anticheat/dvar_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/anticheat/dvar_text.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/autotest/atclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/autotest/atclient.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_accessory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_accessory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_animation_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_animation_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_animstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_animstate.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_antilag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_antilag.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_antilag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_antilag.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_atr_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_atr_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_ballistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_ballistics.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_ballistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_ballistics.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_botdata_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_botdata_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_camera.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_camo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_camo.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_common_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_common_db.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_coverwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_coverwall.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_damage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_damage.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_demeanor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_demeanor.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_door.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_draw_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_draw_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_entitydata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_entitydata.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_entitydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_entitydata.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_entitystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_entitystate.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_execution.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_fov_lerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_fov_lerp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_gesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_gesture.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_glass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_handler.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_helicopter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_helicopter.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_jump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_jump.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_ladder.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_leap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_leap.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_lookat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_lookat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_mantle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_mantle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_matchrules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_matchrules.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_misc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_missile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_missile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_omnvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_omnvar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_omnvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_omnvar.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_perks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_perks.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_perks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_perks.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_playerstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_playerstate.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_pmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_pmove.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_pose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_pose.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_public.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_scr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_scr_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_skydive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_skydive.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_slide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_slide.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_slidemove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_slidemove.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_spaceship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_spaceship.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_static.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_static.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_stepslide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_stepslide.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_suit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_suit.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_targetassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_targetassist.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_trace.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_trajectory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_trajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_trajectory.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_turret.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_vehicle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_vehicle.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_warpaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_warpaint.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_weapon_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_weapon_map.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_weapon_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_weapon_map.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_weapons.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_weapons.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_weapons_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_weapons_util.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bgame/bg_world_up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bgame/bg_world_up.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/bison.simple -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/blackbox/blackbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/blackbox/blackbox.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/blackbox/blackbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/blackbox/blackbox.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_antilag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_antilag.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_antilag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_antilag.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_ballistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_ballistics.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_ballistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_ballistics.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_beamentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_beamentity.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_blur.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_blurscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_blurscene.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_camera.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_camera.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_compass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_compass.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_coverwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_coverwall.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_createfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_createfx.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_door.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_draw.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_draw.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_draw_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_draw_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_draw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_draw_debug.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_drawhits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_drawhits.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_drawrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_drawrange.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_drawtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_drawtools.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_edge.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_entity.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_entity.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_entitydata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_entitydata.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_ents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_ents.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_ents_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_ents_inline.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_event.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_event.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_execution.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_foliage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_foliage.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_fps_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_fps_graph.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_gesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_gesture.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_glass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_globals.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_globals.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_handler.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_handler.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_heat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_heat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_helicopter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_helicopter.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_hudelem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_hudelem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_ladder.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_laser.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_local.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_localents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_localents.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_missile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_missile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_omnvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_omnvar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_players.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_pmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_pmove.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_pose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_pose.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_pose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_pose.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_pose_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_pose_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_predict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_predict.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_radar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_rumble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_rumble.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_servercmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_servercmds.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_shake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_shake.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_shellshock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_shellshock.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_skydive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_skydive.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_slide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_slide.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_snapshot.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_snapshot.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_sound.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_sound.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_spray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_spray.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_static.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_static.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_targetassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_targetassist.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_trace.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_trace.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_train.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_trajectory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_trigger.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_turret.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_vehicle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_vehicle.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_view.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_view.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_visionsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_visionsets.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_weapon_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_weapon_map.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_weapon_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_weapon_map.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_weapons.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_weapons.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_wind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_wind.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_world.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame/cg_wristwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame/cg_wristwatch.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_draw_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_draw_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_draw_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_draw_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_entity_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_entity_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_ents_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_ents_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_event_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_event_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_info_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_info_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_main_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_main_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_sound_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_sound_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_static_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_static_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_view_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_view_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_mp/cg_view_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_mp/cg_view_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_draw_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_draw_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_entity_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_entity_sp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_ents_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_ents_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_main_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_main_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_pip_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_pip_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_static_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_static_sp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/cgame_sp/cg_view_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/cgame_sp/cg_view_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_api.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_api_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_api_inline.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_cameraman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_cameraman.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_cgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_cgame.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_connection.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_console.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_debugdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_debugdata.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_devgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_devgui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_gamepad.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_glass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_input.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_keys.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_main_xb3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_main_xb3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_manager.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_pause.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_pose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_pose.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_preload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_preload.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_scrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_scrn.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_static.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_streaming.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_ui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/cl_ui_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/cl_ui_weapon.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/con_channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/con_channels.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client/gamerprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client/gamerprofile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/cl_ui_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/cl_ui_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/cl_voice_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/cl_voice_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/client_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/client_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/party_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/party_local.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/partychat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/partychat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/partyhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/partyhost.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/partyui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/partyui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/client_mp/voicemute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/client_mp/voicemute.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/containers/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/containers/hash_table.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/database/db_assetenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/database/db_assetenum.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/database/db_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/database/db_stream.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/database/db_xhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/database/db_xhash.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/database/db_zones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/database/db_zones.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/db_zlib/db_zutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/db_zlib/db_zutil.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/devgui/devgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/devgui/devgui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dlog/dlog_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dlog/dlog_events.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dlog/dlog_hookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dlog/dlog_hookup.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dlog/dlog_tdigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dlog/dlog_tdigest.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ds/ds_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ds/ds_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwcounter.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwenvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwenvironment.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dweventbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dweventbuffer.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwframe.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwlogon-xb3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwlogon-xb3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwlogonhsm_xb3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwlogonhsm_xb3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwlogonhsm_xb3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwlogonhsm_xb3.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwmail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwmail.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwmemory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwnet.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwplatformtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwplatformtypes.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwrecordevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwrecordevent.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwregioninfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwregioninfo.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwservicesaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwservicesaccess.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwstats.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwstorage.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwstorage.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwtasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwtasks.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwteams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwteams.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwtelemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwtelemetry.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwuseridlookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwuseridlookup.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/dwutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/dwutils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dw/leaderboardinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dw/leaderboardinfo.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/dynentity/dynentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/dynentity/dynentity.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/file/file_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/file/file_stream.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/fxents/fxentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/fxents/fxentity.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/actor_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/actor_events.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/actor_senses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/actor_senses.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/actor_threat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/actor_threat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_asm.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_asm.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_cover.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_lookat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_lookat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_scr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_scr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_shoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_shoot.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai/ai_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai/ai_wrapper.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_aim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_aim.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_badplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_badplace.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_common.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_grenade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_grenade.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_navigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_navigator.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/ai_navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/ai_navigator.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/enthandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/enthandle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_active.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_active.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_antilag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_antilag.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_antilag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_antilag.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_ballistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_ballistics.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_ballistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_ballistics.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_beamentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_beamentity.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_bullet.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_bullet.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_camera.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_client.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_client.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_client_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_client_tasks.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_cmds.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_combat.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_combat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_combat.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_coverwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_coverwall.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_door.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_draw_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_draw_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_entity_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_entity_tag.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_entitydata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_entitydata.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_execution.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_glass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_handler.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_head_icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_head_icons.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_hudelem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_hudelem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_items.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_items.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_level_locals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_level_locals.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_misc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_missile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_missile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_motionwarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_motionwarp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_objectives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_objectives.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_omnvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_omnvar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_omnvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_omnvar.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_pmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_pmove.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_public.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_rvo3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_rvo3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_save.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_savememory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_savememory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_scr_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_scr_data.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_scr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_scr_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_scr_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_scr_main.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_scr_mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_scr_mover.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_scr_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_scr_weapon.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_spawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_spawn.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_spawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_spawner.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_static.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_static.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_targetassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_targetassist.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_targets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_targets.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_trace.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_trajectory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_trigger.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_turret.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_turret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_turret.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_utils.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_vehicle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_vehicle.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_vehicle_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_vehicle_util.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_weapon.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_weapon.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/g_weapon_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/g_weapon_map.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/linkto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/linkto.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_link.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_obstacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_obstacle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_query.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_repulsor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_repulsor.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_scr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_scr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/nav_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/nav_space.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/navmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/navmesh.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/pathnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/pathnode.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/pathnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/pathnode.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/player_use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/player_use.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/savedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/savedevice.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/savefield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/savefield.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/savememory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/savememory.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/scr_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/scr_const.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/sentient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/sentient.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game/sentient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game/sentient.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_mp/g_cmds_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_mp/g_cmds_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_mp/g_main_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_mp/g_main_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_mp/g_save_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_mp/g_save_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_mp/g_scr_br.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_mp/g_scr_br.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_mp/g_static_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_mp/g_static_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/actor.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_cmds_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_cmds_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_main_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_main_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_misc_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_misc_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_pip_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_pip_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_save_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_save_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_static_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_static_sp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/game_sp/g_turret_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/game_sp/g_turret_sp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gamedvr/gamedvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gamedvr/gamedvr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_add_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_add_bsp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_binding.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_binding.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_bsp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_bsp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_bspsurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_bspsurf.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_buffers.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_buffers.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_cmdbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_cmdbuf.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_cmds.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_compute.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_compute.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_devgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_devgui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_dpvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_dpvs.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_dpvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_dpvs.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_dvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_dvars.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_edtaa3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_edtaa3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_fence_xb3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_fence_xb3.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_flare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_flare.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_font.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_formats.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_glass.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_gpu_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_gpu_timer.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_image.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_image_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_image_db.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_init.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_jpeg.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_label.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_light.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_local.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_marks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_marks.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_mayhem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_mayhem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_mdao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_mdao.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_model.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_model.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_profile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_profile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_resolve.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_rt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_rt_common.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_rt_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_rt_handle.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_scene.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_scene_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_scene_api.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_shade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_shade.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_sky.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_sortsurfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_sortsurfs.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_st.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_stages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_stages.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_state.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_state.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_stats.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_subdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_subdiv.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_sunshadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_sunshadow.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_surfiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_surfiter.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_texture.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_thermal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_thermal.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_types_d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_types_d3d.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_ui_clut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_ui_clut.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_warn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_warn.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/r_xsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/r_xsurface.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_backend.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_chroma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_chroma.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_draw3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_draw3d.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_flare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_flare.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_fog.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_light.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_mdao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_mdao.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_postaa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_postaa.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_postfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_postfx.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_query.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_shade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_shade.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_sky.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_ssao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_ssao.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_ssr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_ssr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_sss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_sss.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_state.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_stats.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/gfx_d3d/rb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/gfx_d3d/rb_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/iwmem/id/iwmem_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/iwmem/id/iwmem_id.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/iwmem/iwmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/iwmem/iwmem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_cod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_cod.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_cod_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_cod_game.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_cod_lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_cod_lobby.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_cod_mlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_cod_mlg.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_cod_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_cod_mouse.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_datamodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_datamodel.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_ddl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_ddl.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_math.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_pool.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_quadcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_quadcache.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_quadcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_quadcache.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_render.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_traces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_traces.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_tween.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/lui/lui_workers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/lui/lui_workers.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/memory/mem_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/memory/mem_error.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/memory/mem_paged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/memory/mem_paged.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/memory/mem_pagetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/memory/mem_pagetree.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/memory/mem_pmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/memory/mem_pmem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/memory/mem_pmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/memory/mem_pmem.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/memory_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/memory_hash.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_aar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_aar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_aar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_aar.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_chat.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_clan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_clan.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_loot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_loot.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_mgr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_qos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_qos.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_store.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/online_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/online_utils.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/userlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/userlist.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/userlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/userlist.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/online/xuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/online/xuid.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/bitarray.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/buildnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/buildnumber.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/checksum.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/checksum.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cm_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cm_load.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cm_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cm_mesh.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cm_test.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cm_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cm_trace.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cmd.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/cmd.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_bsp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_bsp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_bsp_api.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_error.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_inline.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_keys.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_mlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_mlg.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_motd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_motd.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_rank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_rank.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_tasks.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_teams.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/com_teams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/com_teams.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/common.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/dvar_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/dvar_cmds.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/fakelag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/fakelag.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/graph.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/huffman.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/md4.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/migration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/migration.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/msg.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/msg.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_buffer.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_burst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_burst.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_burst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_burst.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_init.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_ping.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_relay.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/net_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/net_stats.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/string.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/sys_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/sys_profile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon/threads.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon_mp/msg_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon_mp/msg_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/qcommon_sp/msg_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/qcommon_sp/msg_sp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ragdoll/ragdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ragdoll/ragdoll.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ragdoll/ragdoll.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ragdoll/ragdoll.inl -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/renderer/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/renderer/tr_types.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/rumble/rumble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/rumble/rumble.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/scr_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/scr_lex.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/scr_lex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/scr_lex.txt -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/scr_yacc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/scr_yacc.txt -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_context.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_entry.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_export.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_memory.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_parser.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_variable.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/script/scr_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/script/scr_vm.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_ccmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_ccmds.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_client.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_demo.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_demo.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_game.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_init.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_profile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_profile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_timing.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server/sv_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server/sv_world.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/server_mp/sv_bot_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/server_mp/sv_bot_mp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_alloc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_api.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_bink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_bink.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_decode.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_decode_rev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_decode_rev.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_delay.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_dsp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_dsp_buffer.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_dsp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_dsp_core.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_mix_master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_mix_master.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_mix_voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_mix_voice.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_mixer.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_peak_limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_peak_limiter.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_source.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_stream.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_vehicle.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/sd_voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/sd_voice.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_alias_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_alias_db.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_api.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_async.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_bank.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_bank_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_bank_load.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_command.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_db.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_devhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_devhost.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_dsp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_dsp.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_globals.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_local.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_log.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_music.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_public.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_public.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_queue.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_resampler.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_submix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_submix.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/snd/snd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/snd/snd_utils.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/stream/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/stream/stream.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/stream/stream_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/stream/stream_bits.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/tracers/tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/tracers/tracer.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_atoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_atoms.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_automation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_automation.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_browser.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_browser_xb3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_browser_xb3.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_keyboard.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_playlists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_playlists.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_screenshot.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui/ui_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui/ui_shared.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui_mp/ui_main_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui_mp/ui_main_mp.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/ui_mp/ui_party.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/ui_mp/ui_party.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/algo.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/bdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/bdiff.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/binpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/binpack.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/com_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/com_color.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/com_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/com_math.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/com_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/com_net.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/com_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/com_types.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/com_utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/com_utf.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/dlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/dlc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/dvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/dvar.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/dvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/dvar.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/dvar_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/dvar_api.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/edge_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/edge_id.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/fft.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/memfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/memfile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/memfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/memfile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/mutex.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/profile.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/profile.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/q_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/q_parse.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/q_shared.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/q_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/q_string.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/stopwatch.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/timer.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/universal/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/universal/timing.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/voice/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/voice/voice.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/voice/voice_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/voice/voice_types.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/win32/win_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/win32/win_files.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/win32/win_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/win32/win_shared.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/dobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/dobj.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/dobj_skel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/dobj_skel.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/dobj_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/dobj_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/mayhem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/mayhem.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/mayhem_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/mayhem_public.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_calc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_client.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_curve.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_ik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_ik.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_local.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_memory.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_node.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_node.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xanim_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xanim_public.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xmodel.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xmodel_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xmodel_db.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xanim/xmodel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xanim/xmodel_utils.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/httprequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/httprequest.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_application.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_gamedvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_gamedvr.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_gamepad.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_input.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_keyboard.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_keyboard.h -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_live.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_live.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_liveparty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_liveparty.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_main.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_mouse.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_mpmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_mpmanager.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_net.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_plm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_plm.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_presence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_presence.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_privacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_privacy.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_sessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_sessions.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_storage.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_users.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_users.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_utils.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_winrt.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xb3/xb3_xmemalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xb3/xb3_xmemalloc.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/xpak/xpak_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/xpak/xpak_game.cpp -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/adler32.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/crc32.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/deflate.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/inffast.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/inflate.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/inftrees.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/trees.c -------------------------------------------------------------------------------- /workspace/iw8/code_source/src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/code_source/src/zlib/zutil.c -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_assert.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_assert.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_bitset.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_checksum.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_color.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_error.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_gamma.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_math.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_math.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_print.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_string.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_string.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_types.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_vec_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_vec_types.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_vector.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/core_xhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/core_xhash.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/gsl/span -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/core/orientation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/core/orientation.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/gfxcore/gfxcorelight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/gfxcore/gfxcorelight.h -------------------------------------------------------------------------------- /workspace/iw8/shared/codware/ujson/ujson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/codware/ujson/ujson.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_dir.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_file.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_http.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_log.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_lz4.c -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_lz4hc.c -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_mutex.h -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_path.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_time.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/indyfs/src/indyfs_xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/indyfs/src/indyfs_xxhash.c -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/ad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/ad.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/bk/ad_bk_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/bk/ad_bk_endpoint.h -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_api.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_debug.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_logging.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_math.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_memory.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_process.cpp -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_types.h -------------------------------------------------------------------------------- /workspace/iw8/shared/cpp/libad/rt/ad_rt_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xLogic/OpenIW8/HEAD/workspace/iw8/shared/cpp/libad/rt/ad_rt_user.cpp --------------------------------------------------------------------------------