This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
389 additions
and 187 deletions.
- +23 −14 premake5.lua
- +1 −1 src/animation/AnimBlendAssociation.h
- +1 −1 src/animation/AnimManager.cpp
- +2 −2 src/control/{PhoneInfo.cpp → Phones.cpp}
- 0 src/control/{PhoneInfo.h → Phones.h}
- +3 −3 src/control/Replay.cpp
- +2 −2 src/control/Replay.h
- +145 −6 src/control/Script.cpp
- +14 −2 src/control/Script.h
- +1 −1 src/{ → core}/Camera.cpp
- 0 src/{ → core}/Camera.h
- 0 src/{ → core}/CdStream.cpp
- 0 src/{ → core}/CdStream.h
- 0 src/{ → core}/Clock.cpp
- 0 src/{ → core}/Clock.h
- +1 −1 src/{ → core}/Collision.cpp
- 0 src/{ → core}/Collision.h
- 0 src/{ → core}/ControllerConfig.cpp
- 0 src/{ → core}/ControllerConfig.h
- 0 src/{ → core}/CutsceneMgr.cpp
- 0 src/{ → core}/CutsceneMgr.h
- 0 src/{ → core}/Directory.cpp
- 0 src/{ → core}/Directory.h
- +1 −1 src/{ → core}/FileLoader.cpp
- 0 src/{ → core}/FileLoader.h
- 0 src/{ → core}/FileMgr.cpp
- 0 src/{ → core}/FileMgr.h
- 0 src/{ → core}/Fire.cpp
- 0 src/{ → core}/Fire.h
- 0 src/{ → core}/Frontend.cpp
- 0 src/{ → core}/Frontend.h
- 0 src/{ → core}/Game.cpp
- 0 src/{ → core}/Game.h
- 0 src/{ → core}/General.h
- 0 src/{ → core}/Lists.cpp
- 0 src/{ → core}/Lists.h
- 0 src/{ → core}/MenuScreens.h
- 0 src/{ → core}/Messages.cpp
- 0 src/{ → core}/Messages.h
- 0 src/{ → core}/NodeName.cpp
- 0 src/{ → core}/NodeName.h
- 0 src/{ → core}/PCSave.cpp
- 0 src/{ → core}/PCSave.h
- 0 src/{ → core}/Pad.cpp
- +64 −64 src/{ → core}/Pad.h
- 0 src/{ → core}/Placeable.cpp
- 0 src/{ → core}/Placeable.h
- 0 src/{entities → core}/PlayerInfo.cpp
- 0 src/{entities → core}/PlayerInfo.h
- 0 src/{entities → core}/PlayerSkin.cpp
- 0 src/{entities → core}/PlayerSkin.h
- 0 src/{ → core}/Pools.cpp
- 0 src/{ → core}/Pools.h
- 0 src/{ → core}/Radar.cpp
- 0 src/{ → core}/Radar.h
- 0 src/{ → core}/References.cpp
- 0 src/{ → core}/References.h
- 0 src/{ → core}/RwClumpRead.cpp
- 0 src/{ → core}/RwHelper.cpp
- 0 src/{ → core}/RwHelper.h
- 0 src/{ → core}/RwMatFX.cpp
- 0 src/{ → core}/RwTexRead.cpp
- 0 src/{ → core}/Stats.cpp
- 0 src/{ → core}/Stats.h
- +1 −1 src/{ → core}/Streaming.cpp
- 0 src/{ → core}/Streaming.h
- 0 src/{ → core}/SurfaceTable.cpp
- 0 src/{ → core}/SurfaceTable.h
- 0 src/{ → core}/TempColModels.cpp
- 0 src/{ → core}/TempColModels.h
- 0 src/{ → core}/Text.cpp
- 0 src/{ → core}/Text.h
- 0 src/{ → core}/Timer.cpp
- +11 −8 src/{ → core}/Timer.h
- 0 src/{ → core}/TxdStore.cpp
- 0 src/{ → core}/TxdStore.h
- 0 src/{ → core}/User.cpp
- 0 src/{ → core}/User.h
- 0 src/{ → core}/Wanted.cpp
- 0 src/{ → core}/Wanted.h
- 0 src/{ → core}/World.cpp
- 0 src/{ → core}/World.h
- +1 −1 src/{CullZones.cpp → core/ZoneCull.cpp}
- 0 src/{CullZones.h → core/ZoneCull.h}
- 0 src/{ → core}/Zones.cpp
- 0 src/{ → core}/Zones.h
- 0 src/{ → core}/common.h
- 0 src/{ → core}/config.h
- 0 src/{ → core}/debugmenu_public.h
- +1 −1 src/{ → core}/main.cpp
- 0 src/{ → core}/main.h
- 0 src/{ → core}/patcher.cpp
- 0 src/{ → core}/patcher.h
- 0 src/{ → core}/re3.cpp
- 0 src/{ → core}/rw.cpp
- 0 src/{ → core}/templates.h
- +53 −12 src/entities/Physical.cpp
- +7 −1 src/entities/Physical.h
- +5 −5 src/math/Vector.h
- 0 src/{ → modelinfo}/MloInstance.cpp
- 0 src/{ → modelinfo}/MloInstance.h
- 0 src/{entities → objects}/CutsceneHead.cpp
- 0 src/{entities → objects}/CutsceneHead.h
- 0 src/{entities → objects}/CutsceneObject.cpp
- 0 src/{entities → objects}/CutsceneObject.h
- 0 src/{entities → objects}/DummyObject.cpp
- 0 src/{entities → objects}/DummyObject.h
- 0 src/{entities → objects}/Object.cpp
- 0 src/{entities → objects}/Object.h
- 0 src/{control → objects}/ObjectData.cpp
- 0 src/{control → objects}/ObjectData.h
- 0 src/{ → objects}/ParticleObject.cpp
- 0 src/{ → objects}/ParticleObject.h
- 0 src/{entities → objects}/Projectile.cpp
- 0 src/{entities → objects}/Projectile.h
- 0 src/{entities → peds}/CivilianPed.cpp
- 0 src/{entities → peds}/CivilianPed.h
- 0 src/{entities → peds}/CopPed.cpp
- 0 src/{entities → peds}/CopPed.h
- 0 src/{entities → peds}/DummyPed.h
- 0 src/{entities → peds}/EmergencyPed.cpp
- 0 src/{entities → peds}/EmergencyPed.h
- +18 −18 src/{entities → peds}/Ped.cpp
- +5 −5 src/{entities → peds}/Ped.h
- 0 src/{entities → peds}/PedIK.cpp
- 0 src/{entities → peds}/PedIK.h
- 0 src/{control → peds}/PedPlacement.cpp
- 0 src/{control → peds}/PedPlacement.h
- 0 src/{control → peds}/PedStats.cpp
- 0 src/{control → peds}/PedStats.h
- 0 src/{control → peds}/PedType.cpp
- 0 src/{control → peds}/PedType.h
- 0 src/{entities → peds}/PlayerPed.cpp
- 0 src/{entities → peds}/PlayerPed.h
- +22 −22 src/render/Hud.cpp
- +1 −1 src/render/Lights.cpp
- +1 −1 src/render/Particle.h
- +1 −1 src/{ → render}/Timecycle.cpp
- 0 src/{ → render}/Timecycle.h
- 0 src/{ → render}/Weather.cpp
- 0 src/{ → render}/Weather.h
- 0 src/{entities → vehicles}/Automobile.cpp
- +3 −4 src/{entities → vehicles}/Automobile.h
- 0 src/{entities → vehicles}/Boat.cpp
- 0 src/{entities → vehicles}/Boat.h
- 0 src/{ → vehicles}/DamageManager.cpp
- 0 src/{ → vehicles}/DamageManager.h
- 0 src/{control → vehicles}/HandlingMgr.cpp
- 0 src/{control → vehicles}/HandlingMgr.h
- 0 src/{entities → vehicles}/Heli.cpp
- 0 src/{entities → vehicles}/Heli.h
- 0 src/{entities → vehicles}/Plane.cpp
- 0 src/{entities → vehicles}/Plane.h
- 0 src/{entities → vehicles}/Train.cpp
- 0 src/{entities → vehicles}/Train.h
- 0 src/{control → vehicles}/Transmission.cpp
- 0 src/{control → vehicles}/Transmission.h
- +1 −1 src/{entities → vehicles}/Vehicle.cpp
- +0 −7 src/{entities → vehicles}/Vehicle.h
There are no files selected for viewing
| @@ -1,6 +1,6 @@ | ||
| #include "common.h" | ||
| #include "patcher.h" | ||
| #include "PhoneInfo.h" | ||
| #include "Phones.h" | ||
|
|
||
| WRAPPER void PhonePutDownCB(CAnimBlendAssociation *assoc, void *arg) { EAXJMP(0x42F570); } | ||
| WRAPPER void PhonePickUpCB(CAnimBlendAssociation *assoc, void *arg) { EAXJMP(0x42F470); } | ||
| WRAPPER void PhonePickUpCB(CAnimBlendAssociation *assoc, void *arg) { EAXJMP(0x42F470); } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.