mirror of
https://github.com/ENSL/NS.git
synced 2024-11-14 17:01:29 +00:00
4f13237895
Change CRLF to LF in repo.
42 lines
No EOL
1 KiB
C++
42 lines
No EOL
1 KiB
C++
#ifndef AVH_PARTICLETEMPLATESERVER_H
|
|
#define AVH_PARTICLETEMPLATESERVER_H
|
|
|
|
#include "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 |