2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-05 01:51:25 +00:00
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
#include "CFactoryMgr.hpp"
|
|
|
|
#include "IOStreams.hpp"
|
|
|
|
#include "CSegIdList.hpp"
|
|
|
|
#include "CSegId.hpp"
|
2016-04-16 03:24:25 +00:00
|
|
|
#include "TSegIdMap.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:
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharLayoutNode(CInputStream& in);
|
|
|
|
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;
|
|
|
|
std::map<std::string, CSegId> x18_segIdMap;
|
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharLayoutInfo(CInputStream& in);
|
|
|
|
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
|