|
| 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) |
| |
| 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 &str) |
| |
| template<typename T > |
| void | to_json (Json &obj, const vector2< T > &vec) |
| |
| template<typename T > |
| void | to_json (Json &obj, const vector3< T > &vec) |
| |
| template<typename T > |
| void | to_json (Json &obj, const Quaternion< T > &vec) |
| |
| template<typename T > |
| void | to_json (Json &obj, const matrix3x3< T > &mat) |
| |
| template<typename T > |
| void | to_json (Json &obj, const matrix4x4< T > &mat) |
| |
| void | to_json (Json &obj, const Color3ub &col) |
| |
| void | to_json (Json &obj, const Color4ub &col) |
| |
| void | to_json (Json &obj, const FrameId &t) |
| |
| void | from_json (const Json &obj, fixed &n) |
| |
| void | to_json (Json &obj, const fixed &n) |
| |
| void | JsonToVector (vector2f *vec, const Json &jsonObj) |
| |
| void | JsonToVector (vector2d *vec, const Json &jsonObj) |
| |
| void | JsonToVector (vector3f *vec, const Json &jsonObj) |
| |
| void | JsonToVector (vector3d *vec, 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) |
| |
| template<typename T > |
| void | from_json (const Json &obj, vector2< T > &vec) |
| |
| template<typename T > |
| void | from_json (const Json &obj, vector3< T > &vec) |
| |
| template<typename T > |
| void | from_json (const Json &obj, Quaternion< T > &vec) |
| |
| template<typename T > |
| void | from_json (const Json &obj, matrix3x3< T > &vec) |
| |
| template<typename T > |
| void | from_json (const Json &obj, matrix4x4< T > &vec) |
| |
| void | from_json (const Json &obj, Color3ub &col) |
| |
| void | from_json (const Json &obj, Color4ub &col) |
| |
| void | from_json (const Json &obj, FrameId &id) |
| |