128 lines
3.1 KiB
C++
128 lines
3.1 KiB
C++
// <edit>
|
|
/**
|
|
* @file llimportobject.h
|
|
*/
|
|
|
|
#ifndef LL_LLIMPORTOBJECT_H
|
|
#define LL_LLIMPORTOBJECT_H
|
|
|
|
#include "llviewerobject.h"
|
|
#include "llfloater.h"
|
|
|
|
|
|
class BuildingSupply : public LLEventTimer
|
|
{
|
|
public:
|
|
BuildingSupply();
|
|
BOOL tick();
|
|
};
|
|
|
|
class LLImportWearable
|
|
{
|
|
public:
|
|
std::string mName;
|
|
int mType;
|
|
std::string mData;
|
|
|
|
LLImportWearable(LLSD sd);
|
|
};
|
|
|
|
class LLImportObject : public LLViewerObject
|
|
{
|
|
public:
|
|
//LLImportObject(std::string id, std::string parentId);
|
|
LLImportObject(std::string id, LLSD prim);
|
|
|
|
std::string mId;
|
|
std::string mParentId;
|
|
std::string mPrimName;
|
|
bool importIsAttachment;
|
|
U32 importAttachPoint;
|
|
LLVector3 importAttachPos;
|
|
LLQuaternion importAttachRot;
|
|
};
|
|
|
|
|
|
class LLXmlImportOptions
|
|
{
|
|
public:
|
|
LLXmlImportOptions(LLXmlImportOptions* options);
|
|
LLXmlImportOptions(std::string filename);
|
|
LLXmlImportOptions(LLSD llsd);
|
|
void init(LLSD llsd);
|
|
std::string mName;
|
|
//LLSD mLLSD;
|
|
std::vector<LLImportObject*> mRootObjects;
|
|
std::vector<LLImportObject*> mChildObjects;
|
|
std::vector<LLImportWearable*> mWearables;
|
|
BOOL mKeepPosition;
|
|
LLViewerObject* mSupplier;
|
|
};
|
|
|
|
|
|
class LLXmlImport
|
|
{
|
|
public:
|
|
static void import(LLXmlImportOptions* import_options);
|
|
static void onNewPrim(LLViewerObject* object);
|
|
static void onNewItem(LLViewerInventoryItem* item);
|
|
static void onNewAttachment(LLViewerObject* object);
|
|
static void Cancel(void* user_data);
|
|
|
|
static bool sImportInProgress;
|
|
static bool sImportHasAttachments;
|
|
static LLUUID sFolderID;
|
|
static LLViewerObject* sSupplyParams;
|
|
static int sPrimsNeeded;
|
|
static std::vector<LLImportObject*> sPrims; // all prims being imported
|
|
static std::map<U8, bool> sPt2watch; // attach points that need watching
|
|
static std::map<std::string, U8> sId2attachpt; // attach points of all attachables
|
|
static std::map<U8, LLVector3> sPt2attachpos; // positions of all attachables
|
|
static std::map<U8, LLQuaternion> sPt2attachrot; // rotations of all attachables
|
|
static int sPrimIndex;
|
|
static int sAttachmentsDone;
|
|
static std::map<std::string, U32> sId2localid;
|
|
static std::map<U32, LLVector3> sRootpositions;
|
|
static LLXmlImportOptions* sXmlImportOptions;
|
|
};
|
|
|
|
|
|
class LLFloaterImportProgress
|
|
: public LLFloater
|
|
{
|
|
public:
|
|
void close(bool app_quitting);
|
|
static LLFloaterImportProgress* sInstance;
|
|
static void show();
|
|
static void update();
|
|
private:
|
|
LLFloaterImportProgress();
|
|
virtual ~LLFloaterImportProgress();
|
|
};
|
|
|
|
|
|
class LLFloaterXmlImportOptions : public LLFloater
|
|
{
|
|
public:
|
|
LLFloaterXmlImportOptions(LLXmlImportOptions* default_options);
|
|
BOOL postBuild();
|
|
LLXmlImportOptions* mDefaultOptions;
|
|
std::map<LLUUID, LLImportWearable*> mImportWearableMap;
|
|
std::map<LLUUID, LLImportObject*> mImportObjectMap;
|
|
private:
|
|
enum LIST_COLUMN_ORDER
|
|
{
|
|
LIST_CHECKED,
|
|
LIST_TYPE,
|
|
LIST_NAME,
|
|
};
|
|
static void onClickSelectAll(void* user_data);
|
|
static void onClickSelectObjects(void* user_data);
|
|
static void onClickSelectWearables(void* user_data);
|
|
static void onClickOK(void* user_data);
|
|
static void onClickCancel(void* user_data);
|
|
};
|
|
|
|
#endif
|
|
// </edit>
|