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
6,878 additions
and 917 deletions.
- +2 −2 src/animation/AnimBlendNode.cpp
- +1 −1 src/animation/AnimBlendNode.h
- +3 −3 src/animation/FrameUpdate.cpp
- +262 −15 src/audio/AudioManager.cpp
- +18 −6 src/audio/AudioManager.h
- +1 −1 src/audio/DMAudio.cpp
- +1 −1 src/audio/DMAudio.h
- +14 −0 src/audio/MusicManager.cpp
- +3 −0 src/audio/MusicManager.h
- +28 −0 src/audio/SampleManager.cpp
- +7 −0 src/audio/SampleManager.h
- +35 −4 src/control/AutoPilot.h
- +329 −3 src/control/Darkel.cpp
- +41 −1 src/control/Darkel.h
- +7 −7 src/control/PathFind.cpp
- +124 −0 src/control/Phones.cpp
- +49 −0 src/control/Phones.h
- +38 −38 src/control/Replay.cpp
- +1,138 −12 src/control/Script.cpp
- +209 −25 src/control/Script.h
- +1,158 −0 src/control/ScriptCommands.h
- +53 −38 src/core/Camera.cpp
- +4 −0 src/core/Camera.h
- +12 −12 src/core/Collision.cpp
- +1 −1 src/core/Collision.h
- +1 −0 src/core/ControllerConfig.cpp
- +2 −1 src/core/ControllerConfig.h
- +5 −0 src/core/Explosion.cpp
- +15 −0 src/core/Explosion.h
- +4 −3 src/core/FileLoader.cpp
- +5 −1 src/core/Fire.cpp
- +14 −7 src/core/Fire.h
- +354 −111 src/core/Frontend.cpp
- +30 −8 src/core/Frontend.h
- +14 −14 src/core/General.h
- +13 −0 src/core/Instance.cpp
- +10 −0 src/core/Instance.h
- +2 −2 src/core/MenuScreens.h
- +11 −11 src/core/Pad.cpp
- +10 −2 src/core/Placeable.cpp
- +9 −7 src/core/Placeable.h
- +10 −1 src/core/PlayerInfo.cpp
- +4 −1 src/core/PlayerInfo.h
- +12 −12 src/core/Radar.cpp
- +10 −3 src/core/Stats.cpp
- +7 −2 src/core/Stats.h
- +5 −5 src/core/Streaming.cpp
- +44 −0 src/core/Text.cpp
- +4 −0 src/core/Text.h
- +100 −1 src/core/Wanted.cpp
- +9 −4 src/core/Wanted.h
- +78 −0 src/core/World.cpp
- +3 −1 src/core/World.h
- +1 −0 src/core/common.h
- +3 −0 src/core/config.h
- +8 −2 src/core/main.cpp
- +7 −1 src/core/main.h
- +15 −22 src/core/re3.cpp
- +9 −2 src/entities/Building.cpp
- +0 −3 src/entities/Building.h
- +11 −3 src/entities/Dummy.cpp
- +0 −5 src/entities/Dummy.h
- +38 −22 src/entities/Entity.cpp
- +5 −17 src/entities/Entity.h
- +46 −33 src/entities/Physical.cpp
- +29 −19 src/entities/Physical.h
- +8 −2 src/entities/Treadable.cpp
- +1 −2 src/entities/Treadable.h
- +71 −35 src/math/Matrix.h
- +1 −1 src/math/Quaternion.h
- +4 −4 src/math/Vector.h
- +2 −2 src/math/Vector2D.h
- +4 −4 src/math/math.cpp
- +16 −0 src/math/maths.h
- +7 −1 src/modelinfo/BaseModelInfo.cpp
- +0 −2 src/modelinfo/BaseModelInfo.h
- +15 −5 src/modelinfo/ClumpModelInfo.cpp
- +0 −7 src/modelinfo/ClumpModelInfo.h
- +0 −7 src/modelinfo/MloInstance.cpp
- +0 −9 src/modelinfo/MloInstance.h
- +2 −1 src/modelinfo/ModelIndices.h
- +10 −2 src/modelinfo/PedModelInfo.cpp
- +0 −4 src/modelinfo/PedModelInfo.h
- +12 −4 src/modelinfo/SimpleModelInfo.cpp
- +0 −5 src/modelinfo/SimpleModelInfo.h
- +16 −6 src/modelinfo/VehicleModelInfo.cpp
- +2 −5 src/modelinfo/VehicleModelInfo.h
- +13 −4 src/objects/CutsceneHead.cpp
- +0 −5 src/objects/CutsceneHead.h
- +19 −7 src/objects/CutsceneObject.cpp
- +6 −14 src/objects/CutsceneObject.h
- +8 −2 src/objects/DummyObject.cpp
- +0 −1 src/objects/DummyObject.h
- +18 −3 src/objects/Object.cpp
- +2 −3 src/objects/Object.h
- +8 −2 src/objects/ParticleObject.cpp
- +0 −2 src/objects/ParticleObject.h
- +8 −2 src/objects/Projectile.cpp
- +0 −1 src/objects/Projectile.h
- +10 −3 src/peds/CivilianPed.cpp
- +2 −5 src/peds/CivilianPed.h
- +8 −2 src/peds/CopPed.cpp
- +0 −1 src/peds/CopPed.h
- +8 −2 src/peds/EmergencyPed.cpp
- +0 −2 src/peds/EmergencyPed.h
- +101 −48 src/peds/Ped.cpp
- +23 −49 src/peds/Ped.h
- +3 −3 src/peds/PedIK.cpp
- +37 −2 src/peds/PlayerPed.cpp
- +7 −1 src/peds/PlayerPed.h
- +8 −8 src/render/Clouds.cpp
- +2 −2 src/render/Coronas.cpp
- +3 −2 src/render/Draw.cpp
- +7 −7 src/render/Hud.cpp
- +4 −4 src/render/Particle.cpp
- +8 −8 src/render/PointLights.cpp
- +1 −1 src/render/Renderer.cpp
- +10 −10 src/render/Sprite.cpp
- +2 −2 src/render/Timecycle.cpp
- +7 −0 src/render/WeaponEffects.cpp
- +14 −0 src/render/WeaponEffects.h
- +6 −6 src/skel/win/win.cpp
- +1,142 −8 src/vehicles/Automobile.cpp
- +73 −21 src/vehicles/Automobile.h
- +7 −3 src/vehicles/Boat.cpp
- +1 −0 src/vehicles/Boat.h
- +1 −0 src/vehicles/DamageManager.cpp
- +23 −17 src/vehicles/DamageManager.h
- +126 −0 src/vehicles/Door.cpp
- +36 −0 src/vehicles/Door.h
- +2 −0 src/vehicles/HandlingMgr.h
- +7 −1 src/vehicles/Heli.cpp
- +0 −1 src/vehicles/Heli.h
- +8 −2 src/vehicles/Plane.cpp
- +0 −1 src/vehicles/Plane.h
- +8 −2 src/vehicles/Train.cpp
- +0 −1 src/vehicles/Train.h
- +323 −13 src/vehicles/Vehicle.cpp
- +87 −20 src/vehicles/Vehicle.h
- +12 −6 src/weapons/Weapon.h
- +3 −3 src/weapons/WeaponInfo.cpp
There are no files selected for viewing
Oops, something went wrong.