├── .github └── workflows │ └── build.yml ├── .gitignore ├── Doxyfile ├── LICENSE ├── README.md ├── SConstruct ├── docs ├── 3D_modeling.md ├── About_the_project.md ├── Adding_video_modes.md ├── Authors_and_contributors.md ├── Car_files_and_formats.md ├── Car_graphics.md ├── Car_parameters.md ├── Car_sounds.md ├── Coding_guidelines.md ├── Compiling.md ├── Config_file_format.md ├── Configuring_the_controls.md ├── Configuring_the_display.md ├── Configuring_the_sound.md ├── Creating_cars.md ├── Creating_tracks.md ├── Data_directory.md ├── Debugging.md ├── Downloading.md ├── Drift_scoring.md ├── Drifting_techniques.md ├── Enabling_force_feedback_in_kernel.md ├── Getting_cars.md ├── Getting_the_development_version.md ├── Getting_tracks.md ├── Importing_Racer_tracks.md ├── Installing.md ├── JOEPack_format.md ├── JOE_format.md ├── Listedit_tool.md ├── Logitech_G25_support.md ├── Main_page.md ├── Menu_system.md ├── Numerical_integration.md ├── Options_config.md ├── Packaging.md ├── Replays.md ├── Reporting_problems.md ├── Requirements.md ├── Setting_up_force_feedback.md ├── Sound_and_graphics_formats.md ├── Source_code_documentation.md ├── Testing.md ├── Track_files_and_formats.md ├── Useful_links.md ├── User_settings_directory.md ├── Using_SCons.md ├── VDrift_config.md └── Working_with_the_development_version.md ├── premake4.lua ├── src ├── SConscript ├── aabb.cpp ├── aabb.h ├── aabbtree.cpp ├── aabbtree.h ├── ai │ ├── ai.cpp │ ├── ai.h │ ├── ai_car.h │ ├── ai_car_experimental.cpp │ ├── ai_car_experimental.h │ ├── ai_car_standard.cpp │ ├── ai_car_standard.h │ └── ai_factory.h ├── autoupdate.cpp ├── autoupdate.h ├── bezier.cpp ├── bezier.h ├── bucketed_hashmap.h ├── camera.h ├── camera_chase.cpp ├── camera_chase.h ├── camera_free.cpp ├── camera_free.h ├── camera_mount.cpp ├── camera_mount.h ├── camera_orbit.cpp ├── camera_orbit.h ├── carcontrolmap.cpp ├── carcontrolmap.h ├── cargraphics.cpp ├── cargraphics.h ├── carinfo.h ├── carsound.cpp ├── carsound.h ├── cartelemetry.h ├── cfg │ ├── config.cpp │ ├── config.h │ ├── ptree.cpp │ ├── ptree.h │ ├── ptree_inf.cpp │ └── ptree_ini.cpp ├── conecull.h ├── containeralgorithm.cpp ├── containeralgorithm.h ├── content │ ├── configfactory.cpp │ ├── configfactory.h │ ├── contentfactory.h │ ├── contentmanager.cpp │ ├── contentmanager.h │ ├── modelfactory.cpp │ ├── modelfactory.h │ ├── soundfactory.cpp │ ├── soundfactory.h │ ├── texturefactory.cpp │ └── texturefactory.h ├── coordinatesystem.h ├── crashdetection.cpp ├── crashdetection.h ├── defer.h ├── delegate.h ├── downloadable.cpp ├── downloadable.h ├── dynamicsdraw.cpp ├── dynamicsdraw.h ├── endian_utility.h ├── enginesoundinfo.h ├── eventsystem.cpp ├── eventsystem.h ├── fastmath.cpp ├── fastmath.h ├── forcefeedback.cpp ├── forcefeedback.h ├── frustum.h ├── frustumcull.cpp ├── frustumcull.h ├── game.cpp ├── game.h ├── game_downloader.h ├── gameinput.h ├── graphics │ ├── aabb_tree_adapter.h │ ├── bcndecode.cpp │ ├── bcndecode.h │ ├── dds.cpp │ ├── dds.h │ ├── drawable.cpp │ ├── drawable.h │ ├── drawable_container.h │ ├── fbobject.cpp │ ├── fbobject.h │ ├── fbtexture.cpp │ ├── fbtexture.h │ ├── gl3v │ │ ├── glenums.cpp │ │ ├── glenums.def │ │ ├── glenums.h │ │ ├── glwrapper.cpp │ │ ├── glwrapper.h │ │ ├── rendercachevector.h │ │ ├── renderdimensions.h │ │ ├── renderer.cpp │ │ ├── renderer.h │ │ ├── rendermodel.h │ │ ├── rendermodelentry.h │ │ ├── rendermodelext.h │ │ ├── renderpass.cpp │ │ ├── renderpass.h │ │ ├── renderpassinfo.h │ │ ├── rendersampler.h │ │ ├── rendershader.h │ │ ├── renderstate.h │ │ ├── renderstatusverbosity.h │ │ ├── rendertexture.h │ │ ├── rendertextureentry.h │ │ ├── renderuniform.h │ │ ├── renderuniformentry.h │ │ ├── renderuniformvector.h │ │ └── stringidmap.h │ ├── glcore.cpp │ ├── glcore.h │ ├── glutil.cpp │ ├── glutil.h │ ├── graphics.h │ ├── graphics_camera.h │ ├── graphics_config.cpp │ ├── graphics_config.h │ ├── graphics_config_condition.cpp │ ├── graphics_config_condition.h │ ├── graphics_gl2.cpp │ ├── graphics_gl2.h │ ├── graphics_gl3v.cpp │ ├── graphics_gl3v.h │ ├── graphicsstate.h │ ├── mesh_gen.cpp │ ├── mesh_gen.h │ ├── model.cpp │ ├── model.h │ ├── model_joe03.cpp │ ├── model_joe03.h │ ├── model_obj.cpp │ ├── model_obj.h │ ├── png.cpp │ ├── png.h │ ├── render_input.h │ ├── render_input_postprocess.cpp │ ├── render_input_postprocess.h │ ├── render_input_scene.cpp │ ├── render_input_scene.h │ ├── render_output.cpp │ ├── render_output.h │ ├── rendermodelext_drawable.h │ ├── scenenode.h │ ├── shader.cpp │ ├── shader.h │ ├── sky.cpp │ ├── sky.h │ ├── texture.cpp │ ├── texture.h │ ├── texture_interface.h │ ├── textureinfo.h │ ├── uniforms.h │ ├── vertexarray.cpp │ ├── vertexarray.h │ ├── vertexattrib.h │ ├── vertexbuffer.cpp │ ├── vertexbuffer.h │ ├── vertexformat.cpp │ └── vertexformat.h ├── gui │ ├── font.cpp │ ├── font.h │ ├── gui.cpp │ ├── gui.h │ ├── guicontrol.cpp │ ├── guicontrol.h │ ├── guicontrollist.cpp │ ├── guicontrollist.h │ ├── guiimage.cpp │ ├── guiimage.h │ ├── guiimagelist.cpp │ ├── guiimagelist.h │ ├── guilabel.cpp │ ├── guilabel.h │ ├── guilabellist.cpp │ ├── guilabellist.h │ ├── guilanguage.cpp │ ├── guilanguage.h │ ├── guilinearslider.cpp │ ├── guilinearslider.h │ ├── guilist.h │ ├── guioption.cpp │ ├── guioption.h │ ├── guipage.cpp │ ├── guipage.h │ ├── guiradialslider.cpp │ ├── guiradialslider.h │ ├── guislider.cpp │ ├── guislider.h │ ├── guiwidget.cpp │ ├── guiwidget.h │ ├── guiwidgetlist.cpp │ ├── guiwidgetlist.h │ ├── text_draw.cpp │ └── text_draw.h ├── hsvtorgb.h ├── http.cpp ├── http.h ├── joepack.cpp ├── joepack.h ├── joeserialize.cpp ├── joeserialize.h ├── k1999.cpp ├── k1999.h ├── keyed_container.cpp ├── keyed_container.h ├── linearinterp.cpp ├── linearinterp.h ├── loadcamera.cpp ├── loadcamera.h ├── loadcollisionshape.cpp ├── loadcollisionshape.h ├── loaddrawable.cpp ├── loaddrawable.h ├── logging.h ├── macros.h ├── main.cpp ├── mathplane.cpp ├── mathplane.h ├── mathvector.cpp ├── mathvector.h ├── matrix3.h ├── matrix4.cpp ├── matrix4.h ├── minmax.h ├── numprocessors.h ├── optional.cpp ├── optional.h ├── pairsort.h ├── parallel_task.cpp ├── parallel_task.h ├── particle.cpp ├── particle.h ├── pathmanager.cpp ├── pathmanager.h ├── performance_testing.cpp ├── performance_testing.h ├── physics │ ├── aerodevice.h │ ├── carbrake.h │ ├── carclutch.h │ ├── cardifferential.h │ ├── cardynamics.cpp │ ├── cardynamics.h │ ├── carengine.cpp │ ├── carengine.h │ ├── carfueltank.h │ ├── carinput.h │ ├── carsuspension.cpp │ ├── carsuspension.h │ ├── cartire.h │ ├── cartire1.cpp │ ├── cartire1.h │ ├── cartire2.cpp │ ├── cartire2.h │ ├── cartire3.cpp │ ├── cartire3.h │ ├── cartirebase.h │ ├── cartransmission.h │ ├── carwheel.h │ ├── carwheelposition.h │ ├── collision_contact.h │ ├── driveline.h │ ├── driveshaft.h │ ├── dynamicsworld.cpp │ ├── dynamicsworld.h │ ├── fracturebody.cpp │ ├── fracturebody.h │ ├── motionstate.h │ ├── tracksurface.h │ └── wheelconstraint.h ├── quaternion.cpp ├── quaternion.h ├── quickmp.h ├── quickprof.h ├── radix.cpp ├── radix.h ├── random.cpp ├── random.h ├── replay.cpp ├── replay.h ├── reseatable_reference.cpp ├── reseatable_reference.h ├── roadpatch.cpp ├── roadpatch.h ├── roadstrip.cpp ├── roadstrip.h ├── settings.cpp ├── settings.h ├── signalprocessing.h ├── signalslot.h ├── skidmarks.cpp ├── skidmarks.h ├── sound │ ├── sound.cpp │ ├── sound.h │ ├── soundbuffer.cpp │ ├── soundbuffer.h │ ├── soundfilter.cpp │ ├── soundfilter.h │ └── soundinfo.h ├── spline.h ├── sprite2d.cpp ├── sprite2d.h ├── suspensionbumpdetection.cpp ├── suspensionbumpdetection.h ├── svn_sourceforge.cpp ├── svn_sourceforge.h ├── timer.cpp ├── timer.h ├── tobullet.h ├── toggle.cpp ├── toggle.h ├── tokenize.h ├── track.cpp ├── track.h ├── trackloader.cpp ├── trackloader.h ├── trackmap.cpp ├── trackmap.h ├── transform.h ├── tripplebuffer.h ├── unittest.h ├── updatemanager.cpp ├── updatemanager.h ├── utils.cpp ├── utils.h ├── window.cpp └── window.h ├── tools ├── G25manage │ ├── G25manage.c │ ├── Makefile │ └── README ├── autopackage │ ├── static_libs │ │ ├── libSDL_gfx.a │ │ ├── libalut.a │ │ └── libopenal.a │ ├── vdrift.apspec │ ├── vdrift.desktop │ └── vdrift_64.apspec ├── cars │ └── blank.car ├── debian │ ├── TODO.Debian │ ├── cdbs │ │ ├── scons-vars.mk │ │ └── scons.mk │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── manpage.xml.ex │ ├── menu.ex │ ├── rules │ ├── vdrift-data.dirs │ ├── vdrift-data.install │ ├── vdrift.dirs │ ├── vdrift.install │ └── watch.ex ├── modelconvert │ ├── SConstruct │ └── main.cpp ├── usbtool-0.1.tar.gz └── valgrind │ ├── grind │ └── vdrift.supp ├── vdrift.appdata.xml ├── vdrift.desktop └── vdrift └── raw └── 2f19c79de4fac0c326fa099dba7d9f19362552d0 └── miura_vdrift_899.jpg /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/SConstruct -------------------------------------------------------------------------------- /docs/3D_modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/3D_modeling.md -------------------------------------------------------------------------------- /docs/About_the_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/About_the_project.md -------------------------------------------------------------------------------- /docs/Adding_video_modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Adding_video_modes.md -------------------------------------------------------------------------------- /docs/Authors_and_contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Authors_and_contributors.md -------------------------------------------------------------------------------- /docs/Car_files_and_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Car_files_and_formats.md -------------------------------------------------------------------------------- /docs/Car_graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Car_graphics.md -------------------------------------------------------------------------------- /docs/Car_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Car_parameters.md -------------------------------------------------------------------------------- /docs/Car_sounds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Car_sounds.md -------------------------------------------------------------------------------- /docs/Coding_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Coding_guidelines.md -------------------------------------------------------------------------------- /docs/Compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Compiling.md -------------------------------------------------------------------------------- /docs/Config_file_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Config_file_format.md -------------------------------------------------------------------------------- /docs/Configuring_the_controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Configuring_the_controls.md -------------------------------------------------------------------------------- /docs/Configuring_the_display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Configuring_the_display.md -------------------------------------------------------------------------------- /docs/Configuring_the_sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Configuring_the_sound.md -------------------------------------------------------------------------------- /docs/Creating_cars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Creating_cars.md -------------------------------------------------------------------------------- /docs/Creating_tracks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Creating_tracks.md -------------------------------------------------------------------------------- /docs/Data_directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Data_directory.md -------------------------------------------------------------------------------- /docs/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Debugging.md -------------------------------------------------------------------------------- /docs/Downloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Downloading.md -------------------------------------------------------------------------------- /docs/Drift_scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Drift_scoring.md -------------------------------------------------------------------------------- /docs/Drifting_techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Drifting_techniques.md -------------------------------------------------------------------------------- /docs/Enabling_force_feedback_in_kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Enabling_force_feedback_in_kernel.md -------------------------------------------------------------------------------- /docs/Getting_cars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Getting_cars.md -------------------------------------------------------------------------------- /docs/Getting_the_development_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Getting_the_development_version.md -------------------------------------------------------------------------------- /docs/Getting_tracks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Getting_tracks.md -------------------------------------------------------------------------------- /docs/Importing_Racer_tracks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Importing_Racer_tracks.md -------------------------------------------------------------------------------- /docs/Installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Installing.md -------------------------------------------------------------------------------- /docs/JOEPack_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/JOEPack_format.md -------------------------------------------------------------------------------- /docs/JOE_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/JOE_format.md -------------------------------------------------------------------------------- /docs/Listedit_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Listedit_tool.md -------------------------------------------------------------------------------- /docs/Logitech_G25_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Logitech_G25_support.md -------------------------------------------------------------------------------- /docs/Main_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Main_page.md -------------------------------------------------------------------------------- /docs/Menu_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Menu_system.md -------------------------------------------------------------------------------- /docs/Numerical_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Numerical_integration.md -------------------------------------------------------------------------------- /docs/Options_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Options_config.md -------------------------------------------------------------------------------- /docs/Packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Packaging.md -------------------------------------------------------------------------------- /docs/Replays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Replays.md -------------------------------------------------------------------------------- /docs/Reporting_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Reporting_problems.md -------------------------------------------------------------------------------- /docs/Requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Requirements.md -------------------------------------------------------------------------------- /docs/Setting_up_force_feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Setting_up_force_feedback.md -------------------------------------------------------------------------------- /docs/Sound_and_graphics_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Sound_and_graphics_formats.md -------------------------------------------------------------------------------- /docs/Source_code_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Source_code_documentation.md -------------------------------------------------------------------------------- /docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Testing.md -------------------------------------------------------------------------------- /docs/Track_files_and_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Track_files_and_formats.md -------------------------------------------------------------------------------- /docs/Useful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Useful_links.md -------------------------------------------------------------------------------- /docs/User_settings_directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/User_settings_directory.md -------------------------------------------------------------------------------- /docs/Using_SCons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Using_SCons.md -------------------------------------------------------------------------------- /docs/VDrift_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/VDrift_config.md -------------------------------------------------------------------------------- /docs/Working_with_the_development_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/docs/Working_with_the_development_version.md -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/premake4.lua -------------------------------------------------------------------------------- /src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/SConscript -------------------------------------------------------------------------------- /src/aabb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/aabb.cpp -------------------------------------------------------------------------------- /src/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/aabb.h -------------------------------------------------------------------------------- /src/aabbtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/aabbtree.cpp -------------------------------------------------------------------------------- /src/aabbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/aabbtree.h -------------------------------------------------------------------------------- /src/ai/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai.cpp -------------------------------------------------------------------------------- /src/ai/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai.h -------------------------------------------------------------------------------- /src/ai/ai_car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_car.h -------------------------------------------------------------------------------- /src/ai/ai_car_experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_car_experimental.cpp -------------------------------------------------------------------------------- /src/ai/ai_car_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_car_experimental.h -------------------------------------------------------------------------------- /src/ai/ai_car_standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_car_standard.cpp -------------------------------------------------------------------------------- /src/ai/ai_car_standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_car_standard.h -------------------------------------------------------------------------------- /src/ai/ai_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/ai/ai_factory.h -------------------------------------------------------------------------------- /src/autoupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/autoupdate.cpp -------------------------------------------------------------------------------- /src/autoupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/autoupdate.h -------------------------------------------------------------------------------- /src/bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/bezier.cpp -------------------------------------------------------------------------------- /src/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/bezier.h -------------------------------------------------------------------------------- /src/bucketed_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/bucketed_hashmap.h -------------------------------------------------------------------------------- /src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera.h -------------------------------------------------------------------------------- /src/camera_chase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_chase.cpp -------------------------------------------------------------------------------- /src/camera_chase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_chase.h -------------------------------------------------------------------------------- /src/camera_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_free.cpp -------------------------------------------------------------------------------- /src/camera_free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_free.h -------------------------------------------------------------------------------- /src/camera_mount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_mount.cpp -------------------------------------------------------------------------------- /src/camera_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_mount.h -------------------------------------------------------------------------------- /src/camera_orbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_orbit.cpp -------------------------------------------------------------------------------- /src/camera_orbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/camera_orbit.h -------------------------------------------------------------------------------- /src/carcontrolmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/carcontrolmap.cpp -------------------------------------------------------------------------------- /src/carcontrolmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/carcontrolmap.h -------------------------------------------------------------------------------- /src/cargraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cargraphics.cpp -------------------------------------------------------------------------------- /src/cargraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cargraphics.h -------------------------------------------------------------------------------- /src/carinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/carinfo.h -------------------------------------------------------------------------------- /src/carsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/carsound.cpp -------------------------------------------------------------------------------- /src/carsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/carsound.h -------------------------------------------------------------------------------- /src/cartelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cartelemetry.h -------------------------------------------------------------------------------- /src/cfg/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/config.cpp -------------------------------------------------------------------------------- /src/cfg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/config.h -------------------------------------------------------------------------------- /src/cfg/ptree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/ptree.cpp -------------------------------------------------------------------------------- /src/cfg/ptree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/ptree.h -------------------------------------------------------------------------------- /src/cfg/ptree_inf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/ptree_inf.cpp -------------------------------------------------------------------------------- /src/cfg/ptree_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/cfg/ptree_ini.cpp -------------------------------------------------------------------------------- /src/conecull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/conecull.h -------------------------------------------------------------------------------- /src/containeralgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/containeralgorithm.cpp -------------------------------------------------------------------------------- /src/containeralgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/containeralgorithm.h -------------------------------------------------------------------------------- /src/content/configfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/configfactory.cpp -------------------------------------------------------------------------------- /src/content/configfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/configfactory.h -------------------------------------------------------------------------------- /src/content/contentfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/contentfactory.h -------------------------------------------------------------------------------- /src/content/contentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/contentmanager.cpp -------------------------------------------------------------------------------- /src/content/contentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/contentmanager.h -------------------------------------------------------------------------------- /src/content/modelfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/modelfactory.cpp -------------------------------------------------------------------------------- /src/content/modelfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/modelfactory.h -------------------------------------------------------------------------------- /src/content/soundfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/soundfactory.cpp -------------------------------------------------------------------------------- /src/content/soundfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/soundfactory.h -------------------------------------------------------------------------------- /src/content/texturefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/texturefactory.cpp -------------------------------------------------------------------------------- /src/content/texturefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/content/texturefactory.h -------------------------------------------------------------------------------- /src/coordinatesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/coordinatesystem.h -------------------------------------------------------------------------------- /src/crashdetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/crashdetection.cpp -------------------------------------------------------------------------------- /src/crashdetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/crashdetection.h -------------------------------------------------------------------------------- /src/defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/defer.h -------------------------------------------------------------------------------- /src/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/delegate.h -------------------------------------------------------------------------------- /src/downloadable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/downloadable.cpp -------------------------------------------------------------------------------- /src/downloadable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/downloadable.h -------------------------------------------------------------------------------- /src/dynamicsdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/dynamicsdraw.cpp -------------------------------------------------------------------------------- /src/dynamicsdraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/dynamicsdraw.h -------------------------------------------------------------------------------- /src/endian_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/endian_utility.h -------------------------------------------------------------------------------- /src/enginesoundinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/enginesoundinfo.h -------------------------------------------------------------------------------- /src/eventsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/eventsystem.cpp -------------------------------------------------------------------------------- /src/eventsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/eventsystem.h -------------------------------------------------------------------------------- /src/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/fastmath.cpp -------------------------------------------------------------------------------- /src/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/fastmath.h -------------------------------------------------------------------------------- /src/forcefeedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/forcefeedback.cpp -------------------------------------------------------------------------------- /src/forcefeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/forcefeedback.h -------------------------------------------------------------------------------- /src/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/frustum.h -------------------------------------------------------------------------------- /src/frustumcull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/frustumcull.cpp -------------------------------------------------------------------------------- /src/frustumcull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/frustumcull.h -------------------------------------------------------------------------------- /src/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/game.cpp -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/game.h -------------------------------------------------------------------------------- /src/game_downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/game_downloader.h -------------------------------------------------------------------------------- /src/gameinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gameinput.h -------------------------------------------------------------------------------- /src/graphics/aabb_tree_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/aabb_tree_adapter.h -------------------------------------------------------------------------------- /src/graphics/bcndecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/bcndecode.cpp -------------------------------------------------------------------------------- /src/graphics/bcndecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/bcndecode.h -------------------------------------------------------------------------------- /src/graphics/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/dds.cpp -------------------------------------------------------------------------------- /src/graphics/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/dds.h -------------------------------------------------------------------------------- /src/graphics/drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/drawable.cpp -------------------------------------------------------------------------------- /src/graphics/drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/drawable.h -------------------------------------------------------------------------------- /src/graphics/drawable_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/drawable_container.h -------------------------------------------------------------------------------- /src/graphics/fbobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/fbobject.cpp -------------------------------------------------------------------------------- /src/graphics/fbobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/fbobject.h -------------------------------------------------------------------------------- /src/graphics/fbtexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/fbtexture.cpp -------------------------------------------------------------------------------- /src/graphics/fbtexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/fbtexture.h -------------------------------------------------------------------------------- /src/graphics/gl3v/glenums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/glenums.cpp -------------------------------------------------------------------------------- /src/graphics/gl3v/glenums.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/glenums.def -------------------------------------------------------------------------------- /src/graphics/gl3v/glenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/glenums.h -------------------------------------------------------------------------------- /src/graphics/gl3v/glwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/glwrapper.cpp -------------------------------------------------------------------------------- /src/graphics/gl3v/glwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/glwrapper.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendercachevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendercachevector.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderdimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderdimensions.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderer.cpp -------------------------------------------------------------------------------- /src/graphics/gl3v/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderer.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendermodel.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendermodelentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendermodelentry.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendermodelext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendermodelext.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderpass.cpp -------------------------------------------------------------------------------- /src/graphics/gl3v/renderpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderpass.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderpassinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderpassinfo.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendersampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendersampler.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendershader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendershader.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderstate.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderstatusverbosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderstatusverbosity.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendertexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendertexture.h -------------------------------------------------------------------------------- /src/graphics/gl3v/rendertextureentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/rendertextureentry.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderuniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderuniform.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderuniformentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderuniformentry.h -------------------------------------------------------------------------------- /src/graphics/gl3v/renderuniformvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/renderuniformvector.h -------------------------------------------------------------------------------- /src/graphics/gl3v/stringidmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/gl3v/stringidmap.h -------------------------------------------------------------------------------- /src/graphics/glcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/glcore.cpp -------------------------------------------------------------------------------- /src/graphics/glcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/glcore.h -------------------------------------------------------------------------------- /src/graphics/glutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/glutil.cpp -------------------------------------------------------------------------------- /src/graphics/glutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/glutil.h -------------------------------------------------------------------------------- /src/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics.h -------------------------------------------------------------------------------- /src/graphics/graphics_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_camera.h -------------------------------------------------------------------------------- /src/graphics/graphics_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_config.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_config.h -------------------------------------------------------------------------------- /src/graphics/graphics_config_condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_config_condition.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_config_condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_config_condition.h -------------------------------------------------------------------------------- /src/graphics/graphics_gl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_gl2.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_gl2.h -------------------------------------------------------------------------------- /src/graphics/graphics_gl3v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_gl3v.cpp -------------------------------------------------------------------------------- /src/graphics/graphics_gl3v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphics_gl3v.h -------------------------------------------------------------------------------- /src/graphics/graphicsstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/graphicsstate.h -------------------------------------------------------------------------------- /src/graphics/mesh_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/mesh_gen.cpp -------------------------------------------------------------------------------- /src/graphics/mesh_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/mesh_gen.h -------------------------------------------------------------------------------- /src/graphics/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model.cpp -------------------------------------------------------------------------------- /src/graphics/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model.h -------------------------------------------------------------------------------- /src/graphics/model_joe03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model_joe03.cpp -------------------------------------------------------------------------------- /src/graphics/model_joe03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model_joe03.h -------------------------------------------------------------------------------- /src/graphics/model_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model_obj.cpp -------------------------------------------------------------------------------- /src/graphics/model_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/model_obj.h -------------------------------------------------------------------------------- /src/graphics/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/png.cpp -------------------------------------------------------------------------------- /src/graphics/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/png.h -------------------------------------------------------------------------------- /src/graphics/render_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_input.h -------------------------------------------------------------------------------- /src/graphics/render_input_postprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_input_postprocess.cpp -------------------------------------------------------------------------------- /src/graphics/render_input_postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_input_postprocess.h -------------------------------------------------------------------------------- /src/graphics/render_input_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_input_scene.cpp -------------------------------------------------------------------------------- /src/graphics/render_input_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_input_scene.h -------------------------------------------------------------------------------- /src/graphics/render_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_output.cpp -------------------------------------------------------------------------------- /src/graphics/render_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/render_output.h -------------------------------------------------------------------------------- /src/graphics/rendermodelext_drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/rendermodelext_drawable.h -------------------------------------------------------------------------------- /src/graphics/scenenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/scenenode.h -------------------------------------------------------------------------------- /src/graphics/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/shader.cpp -------------------------------------------------------------------------------- /src/graphics/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/shader.h -------------------------------------------------------------------------------- /src/graphics/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/sky.cpp -------------------------------------------------------------------------------- /src/graphics/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/sky.h -------------------------------------------------------------------------------- /src/graphics/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/texture.cpp -------------------------------------------------------------------------------- /src/graphics/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/texture.h -------------------------------------------------------------------------------- /src/graphics/texture_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/texture_interface.h -------------------------------------------------------------------------------- /src/graphics/textureinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/textureinfo.h -------------------------------------------------------------------------------- /src/graphics/uniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/uniforms.h -------------------------------------------------------------------------------- /src/graphics/vertexarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexarray.cpp -------------------------------------------------------------------------------- /src/graphics/vertexarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexarray.h -------------------------------------------------------------------------------- /src/graphics/vertexattrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexattrib.h -------------------------------------------------------------------------------- /src/graphics/vertexbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexbuffer.cpp -------------------------------------------------------------------------------- /src/graphics/vertexbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexbuffer.h -------------------------------------------------------------------------------- /src/graphics/vertexformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexformat.cpp -------------------------------------------------------------------------------- /src/graphics/vertexformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/graphics/vertexformat.h -------------------------------------------------------------------------------- /src/gui/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/font.cpp -------------------------------------------------------------------------------- /src/gui/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/font.h -------------------------------------------------------------------------------- /src/gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/gui.cpp -------------------------------------------------------------------------------- /src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/gui.h -------------------------------------------------------------------------------- /src/gui/guicontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guicontrol.cpp -------------------------------------------------------------------------------- /src/gui/guicontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guicontrol.h -------------------------------------------------------------------------------- /src/gui/guicontrollist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guicontrollist.cpp -------------------------------------------------------------------------------- /src/gui/guicontrollist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guicontrollist.h -------------------------------------------------------------------------------- /src/gui/guiimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiimage.cpp -------------------------------------------------------------------------------- /src/gui/guiimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiimage.h -------------------------------------------------------------------------------- /src/gui/guiimagelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiimagelist.cpp -------------------------------------------------------------------------------- /src/gui/guiimagelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiimagelist.h -------------------------------------------------------------------------------- /src/gui/guilabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilabel.cpp -------------------------------------------------------------------------------- /src/gui/guilabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilabel.h -------------------------------------------------------------------------------- /src/gui/guilabellist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilabellist.cpp -------------------------------------------------------------------------------- /src/gui/guilabellist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilabellist.h -------------------------------------------------------------------------------- /src/gui/guilanguage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilanguage.cpp -------------------------------------------------------------------------------- /src/gui/guilanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilanguage.h -------------------------------------------------------------------------------- /src/gui/guilinearslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilinearslider.cpp -------------------------------------------------------------------------------- /src/gui/guilinearslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilinearslider.h -------------------------------------------------------------------------------- /src/gui/guilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guilist.h -------------------------------------------------------------------------------- /src/gui/guioption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guioption.cpp -------------------------------------------------------------------------------- /src/gui/guioption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guioption.h -------------------------------------------------------------------------------- /src/gui/guipage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guipage.cpp -------------------------------------------------------------------------------- /src/gui/guipage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guipage.h -------------------------------------------------------------------------------- /src/gui/guiradialslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiradialslider.cpp -------------------------------------------------------------------------------- /src/gui/guiradialslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiradialslider.h -------------------------------------------------------------------------------- /src/gui/guislider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guislider.cpp -------------------------------------------------------------------------------- /src/gui/guislider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guislider.h -------------------------------------------------------------------------------- /src/gui/guiwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiwidget.cpp -------------------------------------------------------------------------------- /src/gui/guiwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiwidget.h -------------------------------------------------------------------------------- /src/gui/guiwidgetlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiwidgetlist.cpp -------------------------------------------------------------------------------- /src/gui/guiwidgetlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/guiwidgetlist.h -------------------------------------------------------------------------------- /src/gui/text_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/text_draw.cpp -------------------------------------------------------------------------------- /src/gui/text_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/gui/text_draw.h -------------------------------------------------------------------------------- /src/hsvtorgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/hsvtorgb.h -------------------------------------------------------------------------------- /src/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/http.cpp -------------------------------------------------------------------------------- /src/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/http.h -------------------------------------------------------------------------------- /src/joepack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/joepack.cpp -------------------------------------------------------------------------------- /src/joepack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/joepack.h -------------------------------------------------------------------------------- /src/joeserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/joeserialize.cpp -------------------------------------------------------------------------------- /src/joeserialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/joeserialize.h -------------------------------------------------------------------------------- /src/k1999.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/k1999.cpp -------------------------------------------------------------------------------- /src/k1999.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/k1999.h -------------------------------------------------------------------------------- /src/keyed_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/keyed_container.cpp -------------------------------------------------------------------------------- /src/keyed_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/keyed_container.h -------------------------------------------------------------------------------- /src/linearinterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/linearinterp.cpp -------------------------------------------------------------------------------- /src/linearinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/linearinterp.h -------------------------------------------------------------------------------- /src/loadcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loadcamera.cpp -------------------------------------------------------------------------------- /src/loadcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loadcamera.h -------------------------------------------------------------------------------- /src/loadcollisionshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loadcollisionshape.cpp -------------------------------------------------------------------------------- /src/loadcollisionshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loadcollisionshape.h -------------------------------------------------------------------------------- /src/loaddrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loaddrawable.cpp -------------------------------------------------------------------------------- /src/loaddrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/loaddrawable.h -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mathplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/mathplane.cpp -------------------------------------------------------------------------------- /src/mathplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/mathplane.h -------------------------------------------------------------------------------- /src/mathvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/mathvector.cpp -------------------------------------------------------------------------------- /src/mathvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/mathvector.h -------------------------------------------------------------------------------- /src/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/matrix3.h -------------------------------------------------------------------------------- /src/matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/matrix4.cpp -------------------------------------------------------------------------------- /src/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/matrix4.h -------------------------------------------------------------------------------- /src/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/minmax.h -------------------------------------------------------------------------------- /src/numprocessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/numprocessors.h -------------------------------------------------------------------------------- /src/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/optional.cpp -------------------------------------------------------------------------------- /src/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/optional.h -------------------------------------------------------------------------------- /src/pairsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/pairsort.h -------------------------------------------------------------------------------- /src/parallel_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/parallel_task.cpp -------------------------------------------------------------------------------- /src/parallel_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/parallel_task.h -------------------------------------------------------------------------------- /src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/particle.cpp -------------------------------------------------------------------------------- /src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/particle.h -------------------------------------------------------------------------------- /src/pathmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/pathmanager.cpp -------------------------------------------------------------------------------- /src/pathmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/pathmanager.h -------------------------------------------------------------------------------- /src/performance_testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/performance_testing.cpp -------------------------------------------------------------------------------- /src/performance_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/performance_testing.h -------------------------------------------------------------------------------- /src/physics/aerodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/aerodevice.h -------------------------------------------------------------------------------- /src/physics/carbrake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carbrake.h -------------------------------------------------------------------------------- /src/physics/carclutch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carclutch.h -------------------------------------------------------------------------------- /src/physics/cardifferential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cardifferential.h -------------------------------------------------------------------------------- /src/physics/cardynamics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cardynamics.cpp -------------------------------------------------------------------------------- /src/physics/cardynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cardynamics.h -------------------------------------------------------------------------------- /src/physics/carengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carengine.cpp -------------------------------------------------------------------------------- /src/physics/carengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carengine.h -------------------------------------------------------------------------------- /src/physics/carfueltank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carfueltank.h -------------------------------------------------------------------------------- /src/physics/carinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carinput.h -------------------------------------------------------------------------------- /src/physics/carsuspension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carsuspension.cpp -------------------------------------------------------------------------------- /src/physics/carsuspension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carsuspension.h -------------------------------------------------------------------------------- /src/physics/cartire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire.h -------------------------------------------------------------------------------- /src/physics/cartire1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire1.cpp -------------------------------------------------------------------------------- /src/physics/cartire1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire1.h -------------------------------------------------------------------------------- /src/physics/cartire2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire2.cpp -------------------------------------------------------------------------------- /src/physics/cartire2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire2.h -------------------------------------------------------------------------------- /src/physics/cartire3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire3.cpp -------------------------------------------------------------------------------- /src/physics/cartire3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartire3.h -------------------------------------------------------------------------------- /src/physics/cartirebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartirebase.h -------------------------------------------------------------------------------- /src/physics/cartransmission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/cartransmission.h -------------------------------------------------------------------------------- /src/physics/carwheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carwheel.h -------------------------------------------------------------------------------- /src/physics/carwheelposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/carwheelposition.h -------------------------------------------------------------------------------- /src/physics/collision_contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/collision_contact.h -------------------------------------------------------------------------------- /src/physics/driveline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/driveline.h -------------------------------------------------------------------------------- /src/physics/driveshaft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/driveshaft.h -------------------------------------------------------------------------------- /src/physics/dynamicsworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/dynamicsworld.cpp -------------------------------------------------------------------------------- /src/physics/dynamicsworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/dynamicsworld.h -------------------------------------------------------------------------------- /src/physics/fracturebody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/fracturebody.cpp -------------------------------------------------------------------------------- /src/physics/fracturebody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/fracturebody.h -------------------------------------------------------------------------------- /src/physics/motionstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/motionstate.h -------------------------------------------------------------------------------- /src/physics/tracksurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/tracksurface.h -------------------------------------------------------------------------------- /src/physics/wheelconstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/physics/wheelconstraint.h -------------------------------------------------------------------------------- /src/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/quaternion.cpp -------------------------------------------------------------------------------- /src/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/quaternion.h -------------------------------------------------------------------------------- /src/quickmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/quickmp.h -------------------------------------------------------------------------------- /src/quickprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/quickprof.h -------------------------------------------------------------------------------- /src/radix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/radix.cpp -------------------------------------------------------------------------------- /src/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/radix.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/random.h -------------------------------------------------------------------------------- /src/replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/replay.cpp -------------------------------------------------------------------------------- /src/replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/replay.h -------------------------------------------------------------------------------- /src/reseatable_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/reseatable_reference.cpp -------------------------------------------------------------------------------- /src/reseatable_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/reseatable_reference.h -------------------------------------------------------------------------------- /src/roadpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/roadpatch.cpp -------------------------------------------------------------------------------- /src/roadpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/roadpatch.h -------------------------------------------------------------------------------- /src/roadstrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/roadstrip.cpp -------------------------------------------------------------------------------- /src/roadstrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/roadstrip.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/signalprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/signalprocessing.h -------------------------------------------------------------------------------- /src/signalslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/signalslot.h -------------------------------------------------------------------------------- /src/skidmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/skidmarks.cpp -------------------------------------------------------------------------------- /src/skidmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/skidmarks.h -------------------------------------------------------------------------------- /src/sound/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/sound.cpp -------------------------------------------------------------------------------- /src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/sound.h -------------------------------------------------------------------------------- /src/sound/soundbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/soundbuffer.cpp -------------------------------------------------------------------------------- /src/sound/soundbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/soundbuffer.h -------------------------------------------------------------------------------- /src/sound/soundfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/soundfilter.cpp -------------------------------------------------------------------------------- /src/sound/soundfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/soundfilter.h -------------------------------------------------------------------------------- /src/sound/soundinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sound/soundinfo.h -------------------------------------------------------------------------------- /src/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/spline.h -------------------------------------------------------------------------------- /src/sprite2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sprite2d.cpp -------------------------------------------------------------------------------- /src/sprite2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/sprite2d.h -------------------------------------------------------------------------------- /src/suspensionbumpdetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/suspensionbumpdetection.cpp -------------------------------------------------------------------------------- /src/suspensionbumpdetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/suspensionbumpdetection.h -------------------------------------------------------------------------------- /src/svn_sourceforge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/svn_sourceforge.cpp -------------------------------------------------------------------------------- /src/svn_sourceforge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/svn_sourceforge.h -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/tobullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/tobullet.h -------------------------------------------------------------------------------- /src/toggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/toggle.cpp -------------------------------------------------------------------------------- /src/toggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/toggle.h -------------------------------------------------------------------------------- /src/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/tokenize.h -------------------------------------------------------------------------------- /src/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/track.cpp -------------------------------------------------------------------------------- /src/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/track.h -------------------------------------------------------------------------------- /src/trackloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/trackloader.cpp -------------------------------------------------------------------------------- /src/trackloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/trackloader.h -------------------------------------------------------------------------------- /src/trackmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/trackmap.cpp -------------------------------------------------------------------------------- /src/trackmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/trackmap.h -------------------------------------------------------------------------------- /src/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/transform.h -------------------------------------------------------------------------------- /src/tripplebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/tripplebuffer.h -------------------------------------------------------------------------------- /src/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/unittest.h -------------------------------------------------------------------------------- /src/updatemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/updatemanager.cpp -------------------------------------------------------------------------------- /src/updatemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/updatemanager.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/src/window.h -------------------------------------------------------------------------------- /tools/G25manage/G25manage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/G25manage/G25manage.c -------------------------------------------------------------------------------- /tools/G25manage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/G25manage/Makefile -------------------------------------------------------------------------------- /tools/G25manage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/G25manage/README -------------------------------------------------------------------------------- /tools/autopackage/static_libs/libSDL_gfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/static_libs/libSDL_gfx.a -------------------------------------------------------------------------------- /tools/autopackage/static_libs/libalut.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/static_libs/libalut.a -------------------------------------------------------------------------------- /tools/autopackage/static_libs/libopenal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/static_libs/libopenal.a -------------------------------------------------------------------------------- /tools/autopackage/vdrift.apspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/vdrift.apspec -------------------------------------------------------------------------------- /tools/autopackage/vdrift.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/vdrift.desktop -------------------------------------------------------------------------------- /tools/autopackage/vdrift_64.apspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/autopackage/vdrift_64.apspec -------------------------------------------------------------------------------- /tools/cars/blank.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/cars/blank.car -------------------------------------------------------------------------------- /tools/debian/TODO.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/TODO.Debian -------------------------------------------------------------------------------- /tools/debian/cdbs/scons-vars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/cdbs/scons-vars.mk -------------------------------------------------------------------------------- /tools/debian/cdbs/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/cdbs/scons.mk -------------------------------------------------------------------------------- /tools/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/changelog -------------------------------------------------------------------------------- /tools/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /tools/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/control -------------------------------------------------------------------------------- /tools/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/copyright -------------------------------------------------------------------------------- /tools/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/docs -------------------------------------------------------------------------------- /tools/debian/manpage.xml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/manpage.xml.ex -------------------------------------------------------------------------------- /tools/debian/menu.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/menu.ex -------------------------------------------------------------------------------- /tools/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/rules -------------------------------------------------------------------------------- /tools/debian/vdrift-data.dirs: -------------------------------------------------------------------------------- 1 | usr/share/games/vdrift 2 | -------------------------------------------------------------------------------- /tools/debian/vdrift-data.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/vdrift-data.install -------------------------------------------------------------------------------- /tools/debian/vdrift.dirs: -------------------------------------------------------------------------------- 1 | usr/games 2 | -------------------------------------------------------------------------------- /tools/debian/vdrift.install: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/games/vdrift 2 | -------------------------------------------------------------------------------- /tools/debian/watch.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/debian/watch.ex -------------------------------------------------------------------------------- /tools/modelconvert/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/modelconvert/SConstruct -------------------------------------------------------------------------------- /tools/modelconvert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/modelconvert/main.cpp -------------------------------------------------------------------------------- /tools/usbtool-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/usbtool-0.1.tar.gz -------------------------------------------------------------------------------- /tools/valgrind/grind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/valgrind/grind -------------------------------------------------------------------------------- /tools/valgrind/vdrift.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/tools/valgrind/vdrift.supp -------------------------------------------------------------------------------- /vdrift.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/vdrift.appdata.xml -------------------------------------------------------------------------------- /vdrift.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/vdrift.desktop -------------------------------------------------------------------------------- /vdrift/raw/2f19c79de4fac0c326fa099dba7d9f19362552d0/miura_vdrift_899.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDrift/vdrift/HEAD/vdrift/raw/2f19c79de4fac0c326fa099dba7d9f19362552d0/miura_vdrift_899.jpg --------------------------------------------------------------------------------