![]() |
RigsofRods
Soft-body Physics Simulation
|
Data structures representing 'truck' file format, see https://docs.rigsofrods.org/vehicle-creation/fileformat-truck/ for reference. More...
#include "Application.h"
#include "BitFlags.h"
#include "GfxData.h"
#include "RigDef_Node.h"
#include "SimConstants.h"
#include "SimData.h"
#include <list>
#include <memory>
#include <vector>
#include <string>
#include <OgreString.h>
#include <OgreVector3.h>
#include <OgreStringConverter.h>
Go to the source code of this file.
Namespaces | |
RigDef | |
Typedefs | |
typedef std::vector< DifferentialType > | RigDef::DifferentialTypeVec |
Functions | |
const char * | RigDef::KeywordToString (Keyword keyword) |
Data structures representing 'truck' file format, see https://docs.rigsofrods.org/vehicle-creation/fileformat-truck/ for reference.
struct
for data. Auto-importing to higher version (i.e. 'flares' -> 'flares2') is OK. all data should be stored in std::vector<>
s. the data vectors should be named exactly as their file format keywords. each option-string should have dedicated enum class
with fields named '{letter}_{MEANING}'. all bitmasks should use BitMask_t
data type. all bitmask constants should have format static const BitMask_t MEANING = BITMASK({number})
. all option strings should have parsing function GetArgWhatever(int index)
. option-strings should be stored as bitmasks (unless order matters). If only single option is acceptable, use the enum directly. all data structs should contain only arguments, in order. Helper data (where needed) must be prefixed with _
. Definition in file RigDef_File.h.