From 8156a720509dd409117b66f08e78d209f0e6d0d8 Mon Sep 17 00:00:00 2001 From: Dan Allongo Date: Mon, 9 May 2016 20:23:08 -0600 Subject: [PATCH] add readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4220233 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# rFactorSharedMemoryMap + +A plugin for rFactor 1-based sims to export the standard telemetry and scoring data structs to a shared memory mapped file handle. +This allows external programs to access the sim data without affecting frame times in the simulator. + +Details of the shared memory map can be found in `Include\rfSharedStruct.hpp`. The plugin is based on the sample plugin code from ISI found at http://rfactor.net/web/rf1/devcorner/ and compiled using Visual Studio Community 2015. + +A sample application using Python to access the memory map can be found in https://github.com/dallongo/pySRD9c. + +### Releases +#### 2016-05-09 (v1.1.0.0) + +* Updated `rfVehicleInfo` to include acceleration and rotation vectors + +#### 2016-05-08 (v1.0.0.0) + +* Initial release