|
| Json | JsonUtils::LoadJson (RefCountedPtr< FileSystem::FileData > fd) |
| |
| Json | JsonUtils::LoadJsonFile (const std::string &filename, FileSystem::FileSource &source) |
| |
| Json | JsonUtils::LoadJsonDataFile (const std::string &filename, bool with_merge) |
| |
| Json | JsonUtils::LoadJsonSaveFile (const std::string &filename, FileSystem::FileSource &source) |
| |
| bool | JsonUtils::ApplyJsonPatch (Json &inObject, const Json &patchObject, const std::string &filename) |
| |
| void | VectorToJson (Json &jsonObj, const vector2f &vec) |
| |
| void | VectorToJson (Json &jsonObj, const vector2d &vec) |
| |
| void | VectorToJson (Json &jsonObj, const vector3f &vec) |
| |
| void | VectorToJson (Json &jsonObj, const vector3d &vec) |
| |
| void | QuaternionToJson (Json &jsonObj, const Quaternionf &quat) |
| |
| void | QuaternionToJson (Json &jsonObj, const Quaterniond &quat) |
| |
| void | MatrixToJson (Json &jsonObj, const matrix3x3f &mat) |
| |
| void | MatrixToJson (Json &jsonObj, const matrix3x3d &mat) |
| |
| void | MatrixToJson (Json &jsonObj, const matrix4x4f &mat) |
| |
| void | MatrixToJson (Json &jsonObj, const matrix4x4d &mat) |
| |
| void | ColorToJson (Json &jsonObj, const Color3ub &col) |
| |
| void | ColorToJson (Json &jsonObj, const Color4ub &col) |
| |
| void | BinStrToJson (Json &jsonObj, const std::string &binStr) |
| |
| void | JsonToVector (vector2f *pVec, const Json &jsonObj) |
| |
| void | JsonToVector (vector2d *pVec, const Json &jsonObj) |
| |
| void | JsonToVector (vector3f *pVec, const Json &jsonObj) |
| |
| void | JsonToVector (vector3d *pVec, const Json &jsonObj) |
| |
| void | JsonToQuaternion (Quaternionf *pQuat, const Json &jsonObj) |
| |
| void | JsonToQuaternion (Quaterniond *pQuat, const Json &jsonObj) |
| |
| void | JsonToMatrix (matrix3x3f *pMat, const Json &jsonObj) |
| |
| void | JsonToMatrix (matrix3x3d *pMat, const Json &jsonObj) |
| |
| void | JsonToMatrix (matrix4x4f *pMat, const Json &jsonObj) |
| |
| void | JsonToMatrix (matrix4x4d *pMat, const Json &jsonObj) |
| |
| void | JsonToColor (Color3ub *pCol, const Json &jsonObj) |
| |
| void | JsonToColor (Color4ub *pCol, const Json &jsonObj) |
| |
| std::string | JsonToBinStr (const Json &jsonObj) |
| |
| void | to_json (Json &obj, const fixed &f) |
| |
| void | from_json (const Json &obj, fixed &f) |
| |
| void | Vector3fToStr (const vector3f &val, char *out, size_t size) |
| |
| void | Vector3dToStr (const vector3d &val, char *out, size_t size) |
| |
| void | Matrix3x3fToStr (const matrix3x3f &val, char *out, size_t size) |
| |
| void | Matrix3x3dToStr (const matrix3x3d &val, char *out, size_t size) |
| |
| void | Matrix4x4fToStr (const matrix4x4f &val, char *out, size_t size) |
| |
| void | Matrix4x4dToStr (const matrix4x4d &val, char *out, size_t size) |
| |
| void | StrToVector3f (const char *str, vector3f &val) |
| |
| void | StrToVector3d (const char *str, vector3d &val) |
| |
| void | StrToMatrix3x3f (const char *str, matrix3x3f &val) |
| |
| void | StrToMatrix3x3d (const char *str, matrix3x3d &val) |
| |
| void | StrToMatrix4x4f (const char *str, matrix4x4f &val) |
| |
| void | StrToMatrix4x4d (const char *str, matrix4x4d &val) |
| |