mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 01:02:04 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
42 lines
No EOL
1 KiB
C++
42 lines
No EOL
1 KiB
C++
#ifndef AVH_PARTICLETEMPLATESERVER_H
|
|
#define AVH_PARTICLETEMPLATESERVER_H
|
|
|
|
#include "mod/AvHParticleTemplate.h"
|
|
#include "textrep/TRDescription.h"
|
|
#include "dlls/extdll.h"
|
|
#include "common/const.h"
|
|
#include "engine/eiface.h"
|
|
|
|
class AvHParticleTemplateListServer : public AvHParticleTemplateList
|
|
{
|
|
public:
|
|
void Clear();
|
|
|
|
void AddTemplatesFromFile(const string& inRelativeFileName);
|
|
|
|
bool AddAttributesToTemplate(uint32 inTemplateIndex, const KeyValueData* inData);
|
|
|
|
bool CreateTemplates(const TRDescriptionList& inDescriptions);
|
|
|
|
bool CreateTemplate(const KeyValueData* inData, uint32& outIndex);
|
|
|
|
bool GetCreatedTemplates(void) const;
|
|
|
|
bool GetTemplateIndexWithName(const string& inName, uint32& outIndex) const;
|
|
|
|
void LinkToEntities(AvHParticleTemplate* inTemplate);
|
|
|
|
bool SendToNetworkStream();
|
|
|
|
void SendTemplateToNetworkStream(const AvHParticleTemplate* inTemplate);
|
|
|
|
private:
|
|
|
|
bool GetShapeTypeFromValue(const string& inValueName, ShapeType& outType);
|
|
|
|
bool mCreatedTemplates;
|
|
|
|
|
|
};
|
|
|
|
#endif |