Debugging the material access system : seems to work now
parent
663d5894b8
commit
2e61410fb4
@ -1,66 +1,66 @@
|
|||||||
#ifndef CL_MOD_ITEMS
|
#ifndef CL_MOD_ITEMS
|
||||||
#define CL_MOD_ITEMS
|
#define CL_MOD_ITEMS
|
||||||
/*
|
/*
|
||||||
* Creatures
|
* Creatures
|
||||||
*/
|
*/
|
||||||
#include "Export.h"
|
#include "Export.h"
|
||||||
namespace DFHack
|
namespace DFHack
|
||||||
{
|
{
|
||||||
|
|
||||||
enum accessor_type {ACCESSOR_CONSTANT, ACCESSOR_INDIRECT, ACCESSOR_DOUBLE_INDIRECT};
|
enum accessor_type {ACCESSOR_CONSTANT, ACCESSOR_INDIRECT, ACCESSOR_DOUBLE_INDIRECT};
|
||||||
|
|
||||||
/* this is used to store data about the way accessors work */
|
/* this is used to store data about the way accessors work */
|
||||||
class DFHACK_EXPORT Accessor
|
class DFHACK_EXPORT Accessor
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
accessor_type type;
|
accessor_type type;
|
||||||
int32_t constant;
|
int32_t constant;
|
||||||
uint32_t offset1;
|
uint32_t offset1;
|
||||||
uint32_t offset2;
|
uint32_t offset2;
|
||||||
Process * p;
|
Process * p;
|
||||||
uint32_t dataWidth;
|
uint32_t dataWidth;
|
||||||
public:
|
public:
|
||||||
Accessor(uint32_t function, Process * p);
|
Accessor(uint32_t function, Process * p);
|
||||||
Accessor(accessor_type type, int32_t constant, uint32_t offset1, uint32_t offset2, uint32_t dataWidth, Process * p);
|
Accessor(accessor_type type, int32_t constant, uint32_t offset1, uint32_t offset2, uint32_t dataWidth, Process * p);
|
||||||
int32_t getValue(uint32_t objectPtr);
|
int32_t getValue(uint32_t objectPtr);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct t_item
|
struct t_item
|
||||||
{
|
{
|
||||||
t_material matdesc;
|
t_material matdesc;
|
||||||
int32_t quantity;
|
int32_t quantity;
|
||||||
int32_t quality;
|
int32_t quality;
|
||||||
};
|
};
|
||||||
|
|
||||||
class DFHACK_EXPORT ItemDesc
|
class DFHACK_EXPORT ItemDesc
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
Accessor * AMainType;
|
Accessor * AMainType;
|
||||||
Accessor * ASubType;
|
Accessor * ASubType;
|
||||||
Accessor * ASubIndex;
|
Accessor * ASubIndex;
|
||||||
Accessor * AIndex;
|
Accessor * AIndex;
|
||||||
Accessor * AQuality;
|
Accessor * AQuality;
|
||||||
Process * p;
|
Process * p;
|
||||||
bool hasDecoration;
|
bool hasDecoration;
|
||||||
public:
|
public:
|
||||||
ItemDesc(uint32_t VTable, Process * p);
|
ItemDesc(uint32_t VTable, Process * p);
|
||||||
bool getItem(uint32_t itemptr, t_item & item);
|
bool getItem(uint32_t itemptr, t_item & item);
|
||||||
std::string className;
|
std::string className;
|
||||||
uint32_t vtable;
|
uint32_t vtable;
|
||||||
};
|
};
|
||||||
|
|
||||||
class DFHACK_EXPORT Items
|
class DFHACK_EXPORT Items
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Items(DFHack::APIPrivate * _d);
|
Items(DFHack::APIPrivate * _d);
|
||||||
~Items();
|
~Items();
|
||||||
std::string getItemDescription(uint32_t itemptr);
|
std::string getItemDescription(uint32_t itemptr);
|
||||||
bool getItemData(uint32_t itemptr, t_item & item);
|
bool getItemData(uint32_t itemptr, t_item & item);
|
||||||
private:
|
private:
|
||||||
class Private;
|
class Private;
|
||||||
Private* d;
|
Private* d;
|
||||||
/*std::map<int32_t, ItemDesc *> descType; might be useful later */
|
/*std::map<int32_t, ItemDesc *> descType; might be useful later */
|
||||||
std::map<uint32_t, ItemDesc *> descVTable;
|
std::map<uint32_t, ItemDesc *> descVTable;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue