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
20,678 additions
and 15,732 deletions.
- +15 −0 .travis.yml
- +2 −6 eax/eax.h
- BIN gamefiles/models/menu.txd
- +1 −1 librw
- +48 −16 premake5.lua
- +1 −1 src/animation/AnimBlendAssocGroup.cpp
- +2 −1 src/animation/AnimBlendAssociation.h
- +67 −66 src/animation/AnimManager.cpp
- +3 −3 src/animation/AnimationId.h
- +37 −37 src/audio/AudioCollision.cpp
- +6,435 −0 src/audio/AudioLogic.cpp
- +685 −9,599 src/audio/AudioManager.cpp
- +19 −85 src/audio/AudioManager.h
- +1 −1 src/audio/AudioScriptObject.cpp
- +0 −130 src/audio/AudioScriptObject.h
- +3 −3 src/audio/DMAudio.cpp
- +1 −1 src/audio/DMAudio.h
- +2 −4 src/audio/MusicManager.cpp
- +1 −2 src/audio/PoliceRadio.cpp
- +41 −72 src/audio/oal/aldlist.cpp
- +33 −13 src/audio/oal/aldlist.h
- +2 −2 src/audio/oal/channel.cpp
- +0 −1 src/audio/oal/channel.h
- +1 −0 src/audio/oal/oal_utils.cpp
- +0 −1 src/audio/oal/oal_utils.h
- +4 −4 src/audio/oal/stream.cpp
- +0 −1 src/audio/oal/stream.h
- +1 −1 src/audio/sampman.h
- +6 −2 src/audio/sampman_miles.cpp
- +368 −0 src/audio/sampman_null.cpp
- +10 −6 src/audio/sampman_oal.cpp
- +294 −292 src/audio/soundlist.h
- +11 −29 src/control/CarAI.cpp
- +61 −16 src/control/CarCtrl.cpp
- +10 −9 src/control/CarCtrl.h
- +2 −0 src/control/Curves.cpp
- +15 −20 src/control/Garages.cpp
- +0 −1 src/control/Garages.h
- +28 −26 src/control/OnscreenTimer.cpp
- +3 −2 src/control/OnscreenTimer.h
- +3 −2 src/control/Phones.cpp
- +88 −128 src/control/Pickups.cpp
- +5 −3 src/control/Pickups.h
- +25 −2 src/control/Replay.cpp
- +1 −1 src/control/Replay.h
- +2 −2 src/control/RoadBlocks.cpp
- +1 −1 src/control/RoadBlocks.h
- +2,647 −618 src/control/Script.cpp
- +27 −15 src/control/Script.h
- +319 −0 src/control/SetPieces.cpp
- +48 −0 src/control/SetPieces.h
- +3 −1 src/control/TrafficLights.cpp
- +22 −22 src/core/Cam.cpp
- +27 −38 src/core/Camera.cpp
- +6 −4 src/core/Camera.h
- +1 −1 src/core/ColStore.cpp
- +20 −17 src/core/Collision.cpp
- +3 −3 src/core/Collision.h
- +27 −7 src/core/ControllerConfig.cpp
- +2 −0 src/core/ControllerConfig.h
- +4 −2 src/core/EventList.h
- +43 −8 src/core/FileLoader.cpp
- +1 −0 src/core/FileLoader.h
- +815 −1,170 src/core/Frontend.cpp
- +210 −168 src/core/Frontend.h
- +30 −7 src/core/Game.cpp
- +2 −0 src/core/Game.h
- +3 −8 src/core/MenuScreens.h
- +70 −34 src/core/Pad.cpp
- +1 −1 src/core/Pad.h
- +0 −2 src/core/Placeable.cpp
- +0 −1 src/core/Placeable.h
- +7 −4 src/core/PlayerInfo.cpp
- +7 −1 src/core/PlayerInfo.h
- +174 −109 src/core/Radar.cpp
- +106 −40 src/core/Radar.h
- +19 −0 src/core/Stats.cpp
- +16 −9 src/core/Stats.h
- +17 −17 src/core/Streaming.cpp
- +71 −64 src/core/SurfaceTable.cpp
- +29 −72 src/core/SurfaceTable.h
- +14 −14 src/core/TempColModels.cpp
- +1 −1 src/core/Timer.h
- +100 −55 src/core/World.cpp
- +6 −3 src/core/World.h
- +7 −6 src/core/Zones.cpp
- +7 −8 src/core/config.h
- +88 −99 src/core/main.cpp
- +24 −5 src/core/re3.cpp
- +22 −0 src/entities/Building.cpp
- +2 −0 src/entities/Building.h
- +15 −0 src/entities/Dummy.cpp
- +2 −0 src/entities/Dummy.h
- +343 −212 src/entities/Entity.cpp
- +9 −5 src/entities/Entity.h
- +421 −146 src/entities/Physical.cpp
- +11 −7 src/entities/Physical.h
- +1 −1 src/fakerw/fake.cpp
- +2 −1 src/math/Matrix.h
- +1 −3 src/math/Vector2D.h
- +0 −13 src/math/math.cpp
- +3 −3 src/modelinfo/ModelIndices.cpp
- +245 −323 src/modelinfo/ModelIndices.h
- +1 −1 src/modelinfo/PedModelInfo.cpp
- +34 −8 src/objects/Object.cpp
- +15 −16 src/objects/Object.h
- +102 −6 src/peds/CivilianPed.cpp
- +5 −0 src/peds/CivilianPed.h
- +3 −3 src/peds/CopPed.cpp
- +9 −9 src/peds/EmergencyPed.cpp
- +58 −11 src/peds/Gangs.cpp
- +22 −9 src/peds/Gangs.h
- +1,137 −523 src/peds/Ped.cpp
- +173 −38 src/peds/Ped.h
- +775 −0 src/peds/PedAttractor.cpp
- +196 −0 src/peds/PedAttractor.h
- +16 −6 src/peds/PedIK.cpp
- +1 −1 src/peds/PedIK.h
- +87 −58 src/peds/PlayerPed.cpp
- +1 −0 src/peds/PlayerPed.h
- +15 −60 src/peds/Population.cpp
- +1 −1 src/peds/Population.h
- +11 −1 src/render/2dEffect.h
- +5 −0 src/render/Clouds.cpp
- +10 −7 src/render/Coronas.cpp
- +4 −2 src/render/Coronas.h
- +28 −28 src/render/Credits.cpp
- +14 −15 src/render/Draw.cpp
- +2 −4 src/render/Draw.h
- +2 −2 src/render/Fluff.cpp
- +1 −1 src/render/Font.h
- +6 −5 src/render/Glass.cpp
- +368 −92 src/render/Hud.cpp
- +43 −0 src/render/Hud.h
- +36 −0 src/render/Occlusion.cpp
- +19 −0 src/render/Occlusion.h
- +3 −2 src/render/Particle.cpp
- +9 −6 src/render/Renderer.cpp
- +7 −6 src/render/Shadows.cpp
- +2 −2 src/render/Skidmarks.cpp
- +1 −0 src/render/SpecialFX.cpp
- +2 −0 src/render/SpecialFX.h
- +2 −2 src/render/Sprite.cpp
- +7 −8 src/render/Sprite2d.cpp
- +6 −2 src/render/Timecycle.cpp
- +2 −2 src/render/Timecycle.h
- +118 −66 src/render/Weather.cpp
- +11 −17 src/render/Weather.h
- +8 −0 src/render/WindModifiers.cpp
- +7 −0 src/render/WindModifiers.h
- +3 −3 src/rw/Lights.cpp
- +11 −0 src/rw/RwHelper.cpp
- +2 −0 src/rw/VisibilityPlugins.cpp
- +6 −2 src/save/GenericGameStorage.cpp
- +2 −1 src/save/GenericGameStorage.h
- +17 −17 src/skel/glfw/glfw.cpp
- +1 −1 src/skel/platform.h
- +8 −8 src/skel/skeleton.cpp
- +9 −9 src/skel/skeleton.h
- BIN src/skel/win/gta3.ico
- BIN src/skel/win/gtavc.ico
- +28 −18 src/skel/win/win.cpp
- +1 −1 src/skel/win/win.rc
- +220 −42 src/text/Text.cpp
- +44 −3 src/text/Text.h
- +108 −90 src/vehicles/Automobile.cpp
- +6 −2 src/vehicles/Automobile.h
- +78 −1 src/vehicles/Boat.cpp
- +1 −0 src/vehicles/Boat.h
- +3 −2 src/vehicles/CarGen.cpp
- +9 −4 src/vehicles/Cranes.cpp
- +191 −55 src/vehicles/HandlingMgr.cpp
- +73 −5 src/vehicles/HandlingMgr.h
- +1 −53 src/vehicles/Heli.cpp
- +2 −0 src/vehicles/Plane.cpp
- +1,294 −235 src/vehicles/Vehicle.cpp
- +76 −21 src/vehicles/Vehicle.h
- +1 −1 src/weapons/ShotInfo.cpp
- +586 −164 src/weapons/Weapon.cpp
- +9 −6 src/weapons/Weapon.h
- +32 −14 src/weapons/WeaponInfo.cpp
- +2 −1 src/weapons/WeaponInfo.h
- +30 −12 src/weapons/WeaponType.h
There are no files selected for viewing
| @@ -0,0 +1,15 @@ | |||
| language: cpp | |||
| os: linux | |||
| dist: focal | |||
| matrix: | |||
| include: | |||
| - env: TARGET=release_linux-amd64-librw_gl3_glfw-oal | |||
| - env: TARGET=debug_linux-amd64-librw_gl3_glfw-oal | |||
| script: | |||
| - sudo apt-get update | |||
| - sudo apt-get -y install linux-libc-dev libopenal-dev libglew-dev libglfw3-dev libsndfile1-dev libmpg123-dev gcc-8-multilib g++-8-multilib | |||
| - mkdir -p "$TRAVIS_BUILD_DIR/build" | |||
| - cd "$TRAVIS_BUILD_DIR" | |||
| - ./premake5Linux --with-librw gmake2 | |||
| - cd build | |||
| - CC=gcc-8 CXX=g++-8 make config=$TARGET -j4 verbose=1 | |||
Binary file not shown.
Submodule librw
updated
50 files
Oops, something went wrong.