|
| 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 &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) |
| |