metaforce/Runtime/Character/CSegStatementSet.hpp

22 lines
653 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-11 23:35:37 +00:00
#include "Runtime/Character/CAnimPerSegmentData.hpp"
#include "Runtime/Character/CSegId.hpp"
2016-04-16 03:24:25 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
2016-04-16 03:24:25 +00:00
class CCharLayoutInfo;
class CSegIdList;
2016-04-11 23:35:37 +00:00
2018-12-08 05:30:43 +00:00
class CSegStatementSet {
2016-04-16 03:24:25 +00:00
public:
2018-12-08 05:30:43 +00:00
/* Used to be a pointer to arbitrary subclass-provided storage,
* now it's a self-stored array */
CAnimPerSegmentData x4_segData[100];
void Add(const CSegIdList& list, const CCharLayoutInfo& layout, const CSegStatementSet& other, float weight);
2016-08-21 00:04:50 +00:00
2018-12-08 05:30:43 +00:00
CAnimPerSegmentData& operator[](const CSegId& idx) { return x4_segData[idx]; }
const CAnimPerSegmentData& operator[](const CSegId& idx) const { return x4_segData[idx]; }
2016-04-11 23:35:37 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde