diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-08-02 00:04:30 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-08-02 00:30:40 +0200 |
commit | 875cdd845db1255329c77c458df993f1b490e8e8 (patch) | |
tree | 73434501fcd8b2167daf88c83c5a1e0f40671780 /src/control/Pickups.cpp | |
parent | implemented CPlane (diff) | |
download | re3-875cdd845db1255329c77c458df993f1b490e8e8.tar re3-875cdd845db1255329c77c458df993f1b490e8e8.tar.gz re3-875cdd845db1255329c77c458df993f1b490e8e8.tar.bz2 re3-875cdd845db1255329c77c458df993f1b490e8e8.tar.lz re3-875cdd845db1255329c77c458df993f1b490e8e8.tar.xz re3-875cdd845db1255329c77c458df993f1b490e8e8.tar.zst re3-875cdd845db1255329c77c458df993f1b490e8e8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Pickups.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/control/Pickups.cpp b/src/control/Pickups.cpp index c93798fe..2770a948 100644 --- a/src/control/Pickups.cpp +++ b/src/control/Pickups.cpp @@ -4,11 +4,16 @@ CPickup(&CPickups::aPickUps)[NUMPICKUPS] = *(CPickup(*)[NUMPICKUPS])*(uintptr*)0x878C98; +// 20 ?! Some Miami leftover? (Originally at 0x5ED8D4) +uint16 CPickups::ms_maxAmmosForWeapons[20] = { 0, 1, 45, 125, 25, 150, 300, 25, 5, 250, 5, 5, 0, 500, 0, 100, 0, 0, 0, 0 }; + WRAPPER void CPickups::RenderPickUpText(void) { EAXJMP(0x432440); } WRAPPER void CPickups::DoCollectableEffects(CEntity *ent) { EAXJMP(0x431C30); } WRAPPER void CPickups::DoMoneyEffects(CEntity *ent) { EAXJMP(0x431F40); } WRAPPER void CPickups::DoMineEffects(CEntity *ent) { EAXJMP(0x4321C0); } WRAPPER void CPickups::DoPickUpEffects(CEntity *ent) { EAXJMP(0x431520); } WRAPPER void CPickups::RemoveAllFloatingPickups() { EAXJMP(0x430800); } +WRAPPER int32 CPickups::GenerateNewOne(CVector, uint32, uint8, uint32) { EAXJMP(0x4304B0); } +WRAPPER int32 CPickups::GenerateNewOne_WeaponType(CVector, eWeaponType, uint8, uint32) { EAXJMP(0x430660); } WRAPPER void CPacManPickups::Render(void) { EAXJMP(0x432F60); } |