2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-05 01:51:25 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Runtime/CFactoryMgr.hpp"
|
|
|
|
#include "Runtime/IOStreams.hpp"
|
|
|
|
#include "Runtime/Character/CSegId.hpp"
|
|
|
|
#include "Runtime/Character/CSegIdList.hpp"
|
|
|
|
#include "Runtime/Character/TSegIdMap.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2016-04-09 23:19:17 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-04-05 01:51:25 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CCharLayoutNode {
|
2016-04-09 23:19:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
struct Bone {
|
|
|
|
CSegId x0_parentId;
|
|
|
|
zeus::CVector3f x4_origin;
|
|
|
|
std::vector<CSegId> x10_children;
|
|
|
|
void read(CInputStream& in);
|
|
|
|
};
|
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
private:
|
2018-12-08 05:30:43 +00:00
|
|
|
TSegIdMap<Bone> x0_boneMap;
|
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
public:
|
2019-10-27 01:27:00 +00:00
|
|
|
explicit CCharLayoutNode(CInputStream& in);
|
2018-12-08 05:30:43 +00:00
|
|
|
const TSegIdMap<Bone>& GetBoneMap() const { return x0_boneMap; }
|
2016-04-09 23:19:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CCharLayoutInfo {
|
|
|
|
std::shared_ptr<CCharLayoutNode> x0_node;
|
|
|
|
CSegIdList x8_segIdList;
|
2019-10-27 01:14:43 +00:00
|
|
|
std::map<std::string, CSegId, std::less<>> x18_segIdMap;
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
public:
|
2019-10-27 01:27:00 +00:00
|
|
|
explicit CCharLayoutInfo(CInputStream& in);
|
2018-12-08 05:30:43 +00:00
|
|
|
const std::shared_ptr<CCharLayoutNode>& GetRootNode() const { return x0_node; }
|
|
|
|
const CSegIdList& GetSegIdList() const { return x8_segIdList; }
|
|
|
|
zeus::CVector3f GetFromParentUnrotated(const CSegId& id) const;
|
|
|
|
zeus::CVector3f GetFromRootUnrotated(const CSegId& id) const;
|
|
|
|
CSegId GetSegIdFromString(std::string_view name) const;
|
2016-04-05 01:51:25 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CFactoryFnReturn FCharLayoutInfo(const SObjectTag&, CInputStream&, const CVParamTransfer&, CObjectReference* selfRef);
|
2016-04-05 01:51:25 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|