blob: b0b9500ac6113eb91570e1fd1b08c6a5037eb79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/**
* @file llviewerpartsim.h
* @brief LLViewerPart class header file
*
* Copyright (c) 2003-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLVIEWERPARTSIM_H
#define LL_LLVIEWERPARTSIM_H
#include "lldarrayptr.h"
#include "llskiplist.h"
#include "llframetimer.h"
#include "llmemory.h"
#include "llpartdata.h"
class LLViewerImage;
class LLViewerPart;
class LLViewerPartSource;
class LLViewerRegion;
class LLViewerImage;
class LLVOPartGroup;
typedef void (*LLVPCallback)(LLViewerPart &part, const F32 dt);
///////////////////
//
// An individual particle
//
class LLViewerPart : public LLPartData, public LLRefCount
{
public:
LLViewerPart();
~LLViewerPart();
LLViewerPart &operator=(const LLViewerPart &part);
void init(LLViewerPartSource *sourcep, LLViewerImage *imagep, LLVPCallback cb);
U32 mPartID; // Particle ID used primarily for moving between groups
F32 mLastUpdateTime; // Last time the particle was updated
LLVPCallback mVPCallback; // Callback function for more complicated behaviors
LLPointer<LLViewerPartSource> mPartSourcep; // Particle source used for this object
// Current particle state (possibly used for rendering)
LLPointer<LLViewerImage> mImagep;
LLVector3 mPosAgent;
LLVector3 mVelocity;
LLVector3 mAccel;
LLColor4 mColor;
LLVector2 mScale;
static U32 sNextPartID;
};
class LLViewerPartGroup
{
public:
LLViewerPartGroup(const LLVector3 ¢er,
const F32 box_radius);
virtual ~LLViewerPartGroup();
void cleanup();
BOOL addPart(LLViewerPart* part, const F32 desired_size = -1.f);
void updateParticles(const F32 dt);
BOOL posInGroup(const LLVector3 &pos, const F32 desired_size = -1.f);
void shift(const LLVector3 &offset);
typedef std::vector<LLPointer<LLViewerPart> > part_list_t;
part_list_t mParticles;
const LLVector3 &getCenterAgent() const { return mCenterAgent; }
S32 getCount() const { return (S32) mParticles.size(); }
LLViewerRegion *getRegion() const { return mRegionp; }
LLPointer<LLVOPartGroup> mVOPartGroupp;
BOOL mUniformParticles;
U32 mID;
protected:
void removePart(const S32 part_num);
protected:
LLVector3 mCenterAgent;
F32 mBoxRadius;
LLVector3 mMinObjPos;
LLVector3 mMaxObjPos;
LLViewerRegion *mRegionp;
};
class LLViewerPartSim
{
public:
LLViewerPartSim();
virtual ~LLViewerPartSim();
void shift(const LLVector3 &offset);
void updateSimulation();
void addPartSource(LLViewerPartSource *sourcep);
void cleanupRegion(LLViewerRegion *regionp);
BOOL shouldAddPart(); // Just decides whether this particle should be added or not (for particle count capping)
void addPart(LLViewerPart* part);
void cleanMutedParticles(const LLUUID& task_id);
friend class LLViewerPartGroup;
BOOL aboveParticleLimit() const { return sParticleCount > sMaxParticleCount; }
static void setMaxPartCount(const S32 max_parts) { sMaxParticleCount = max_parts; }
static S32 getMaxPartCount() { return sMaxParticleCount; }
static void incPartCount(const S32 count) { sParticleCount += count; }
static void decPartCount(const S32 count) { sParticleCount -= count; }
U32 mID;
protected:
LLViewerPartGroup *createViewerPartGroup(const LLVector3 &pos_agent, const F32 desired_size);
LLViewerPartGroup *put(LLViewerPart* part);
protected:
typedef std::vector<LLViewerPartGroup *> group_list_t;
typedef std::vector<LLPointer<LLViewerPartSource> > source_list_t;
group_list_t mViewerPartGroups;
source_list_t mViewerPartSources;
LLFrameTimer mSimulationTimer;
static S32 sMaxParticleCount;
static S32 sParticleCount;
};
#endif // LL_LLVIEWERPARTSIM_H
|