2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-08-03 23:20:31 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include "Runtime/CToken.hpp"
|
|
|
|
#include "Runtime/IFactory.hpp"
|
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
#include "Runtime/rstl.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CVector2i.hpp>
|
2016-08-03 23:20:31 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScannableObjectInfo {
|
2016-08-03 23:20:31 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
enum class EPanelType {};
|
2016-08-14 21:38:05 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
struct SBucket {
|
|
|
|
CAssetId x0_texture;
|
|
|
|
float x4_appearanceRange = 0.f;
|
|
|
|
u32 x8_imagePos = 0;
|
|
|
|
zeus::CVector2i xc_size;
|
|
|
|
float x14_interval = 0.f;
|
|
|
|
float x18_fadeDuration = 0.f;
|
|
|
|
SBucket(CInputStream&, u32 version);
|
|
|
|
};
|
2016-08-03 23:20:31 +00:00
|
|
|
|
|
|
|
private:
|
2018-12-08 05:30:43 +00:00
|
|
|
void Load(CInputStream&, u32);
|
|
|
|
CAssetId x0_scannableObjectId;
|
|
|
|
CAssetId x4_stringId;
|
|
|
|
float x8_totalDownloadTime = 0.f;
|
|
|
|
u32 xc_category = 0;
|
|
|
|
bool x10_important = false;
|
|
|
|
rstl::reserved_vector<SBucket, 4> x14_buckets;
|
2017-01-31 11:21:45 +00:00
|
|
|
|
2016-08-03 23:20:31 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScannableObjectInfo(CInputStream&, CAssetId);
|
|
|
|
CAssetId GetScannableObjectId() const { return x0_scannableObjectId; }
|
|
|
|
CAssetId GetStringTableId() const { return x4_stringId; }
|
|
|
|
float GetTotalDownloadTime() const { return x8_totalDownloadTime; }
|
|
|
|
const SBucket& GetBucket(s32 idx) const { return x14_buckets[idx]; }
|
|
|
|
u32 GetCategory() const { return xc_category; }
|
|
|
|
bool IsImportant() const { return x10_important; }
|
2016-08-03 23:20:31 +00:00
|
|
|
};
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
CFactoryFnReturn FScannableObjectInfoFactory(const SObjectTag&, CInputStream&, const CVParamTransfer&,
|
|
|
|
CObjectReference* selfRef);
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|