This file is indexed.

/usr/include/tuxcap/hgeparticle.h is in libtuxcap-dev 1.4.0.dfsg2-2.3+b2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*
** Haaf's Game Engine 1.5
** Copyright (C) 2003-2004, Relish Games
** hge.relishgames.com
**
** hgeParticleSystem helper class header
** 
** Hacked on by 
**
** Kevin Lynx
** James Poag
** W.P. van Paassen
*/

#ifndef HGEPARTICLE_H
#define HGEPARTICLE_H

#include "Graphics.h"
#include "Physics.h"
#include "Point.h"
#include "DDImage.h"
#include <vector>
#include "hgevector.h"
#include "hgecolor.h"
#include "hgerect.h"

using namespace Sexy;

namespace HGE
{

#define MAX_PARTICLES	500
#define MAX_PSYSTEMS	100

#ifndef M_PI
#define M_PI	3.14159265358979323846f
#define M_PI_2	1.57079632679489661923f
#define M_PI_4	0.785398163397448309616f
#define M_1_PI	0.318309886183790671538f
#define M_2_PI	0.636619772367581343076f
#endif

	struct hgeParticle
	{
		hgeVector	vecLocation;
		hgeVector	vecVelocity;

		float		fGravity;
		float		fRadialAccel;
		float		fTangentialAccel;

		float		fSpin;
		float		fSpinDelta;

		float		fSize;
		float		fSizeDelta;

		hgeColor	colColor;		// + alpha
		hgeColor	colColorDelta;

		float		fAge;
		float		fTerminalAge;
          
          PhysicsObject* ph_object;
          //TODO  store the location of the system on creation of the particle, to be used for scaling particlesystems which are moved around
          //hgeVector vecSpawnLocation;

	};

	struct hgeParticleSystemInfo
	{
		//hgeSprite*	sprite;    // texture + blend mode
          DDImage		*sprite;

		int			nEmission; // particles per sec
		float		fLifetime;

		float		fParticleLifeMin;
		float		fParticleLifeMax;

		float		fDirection;
		float		fSpread;
		bool		bRelative;

		float		fSpeedMin;
		float		fSpeedMax;

		float		fGravityMin;
		float		fGravityMax;

		float		fRadialAccelMin;
		float		fRadialAccelMax;

		float		fTangentialAccelMin;
		float		fTangentialAccelMax;

		float		fSizeStart;
		float		fSizeEnd;
		float		fSizeVar;

		float		fSpinStart;
		float		fSpinEnd;
		float		fSpinVar;

		hgeColor	colColorStart; // + alpha
		hgeColor	colColorEnd;
		float		fColorVar;
		float		fAlphaVar;
	};

	class hgeParticleSystem
	{
	public:
		hgeParticleSystemInfo info;

		hgeParticleSystem(const char *filename, DDImage *sprite, float fps=0.0f, bool parseMetaData = true, bool old_format=true);
		hgeParticleSystem(hgeParticleSystemInfo *psi, float fps=0.0f);
		hgeParticleSystem(const hgeParticleSystem &ps);
		virtual ~hgeParticleSystem() {}

		hgeParticleSystem&	operator= (const hgeParticleSystem &ps);

		std::vector<Sexy::Point>		mPolygonClipPoints;
		std::vector<Sexy::Point>		mWayPoints;

		virtual void				SaveFile(const char *filename);

		virtual void				Play(int thePlayMode = MAX_PLAYMODES); // Plays the Particle along the waypoint's path
		virtual void		Render( Graphics *g );
		virtual void				FireAt(float x, float y);
		virtual void				Fire();
		virtual void				Stop(bool bKillParticles=false);
		virtual void		Update(float fDeltaTime);
		virtual void				MoveTo(float x, float y, bool bMoveParticles=false);
		virtual void				Translate(float x, float y) { fTx=x; fTy=y; }
		virtual void				TrackBoundingBox(bool bTrack) { bUpdateBoundingBox=bTrack; }
                virtual void				SetParticleScale(float scale) { fParticleScale = scale; }
                virtual float				GetParticleScale() const { return fParticleScale; }		
                virtual void				SetScale(float scale) { fScale = scale; }
                virtual float				GetScale() const { return fScale; }		
                virtual int				GetParticlesAlive() const { return nParticlesAlive; }
		virtual float				GetAge() const { return fAge; }
		virtual void				GetPosition(float *x, float *y) const { *x=vecLocation.x; *y=vecLocation.y; }
		virtual void				GetTranslation(float *x, float *y) const { *x=fTx; *y=fTy; }
		virtual hgeRect*			GetBoundingBox(hgeRect *rect) const;

                virtual unsigned int                    GetCollisionType() const;
                virtual unsigned int                    GetCollisionGroup() const;
                virtual void                                 SetCollisionType(unsigned int type);
                virtual void                                 SetCollisionGroup(unsigned int group);

		/*
		whether addtive blend
		*/
		bool				mbAdditiveBlend;

		// Texture file to load
		std::string			mTextureName;

		// ANimation state variables
		int					mPlayMode;
		float				mPlayTime;
		float				mPlayTimer;
		float				mPlayTimerStepSize;
		bool				mAnimPlaying;
		int					mPlayMarker;
		int					mPingPong;
                bool bInitOK;
		enum{PING, PONG};
		enum{STOPPED = -1, PLAY_ONCE, PLAY_LOOPED, PLAY_PINGPONGED, MAX_PLAYMODES};
	protected:
		hgeParticleSystem();

		virtual void				_update(float fDeltaTime);
		virtual void				_updatePlay(float fDeltaTime);


                float				fScale; //scales the particle system
                float				fParticleScale; 
		float				fUpdSpeed;
		float				fResidue;

		float				fAge;
		float				fEmissionResidue;

		hgeVector			vecPrevLocation;
		hgeVector			vecLocation;
		float				fTx, fTy;

		int					nParticlesAlive;
		hgeRect				rectBoundingBox;
		bool				bUpdateBoundingBox;

		hgeParticle			particles[MAX_PARTICLES];

	protected:
		static	bool	m_bInitRandom;
                bool bOldFormat;

		virtual void	InitRandom();

		virtual void				ParseMetaData(FILE* aFile);
		virtual void				SaveMetaData(FILE* aFile);

		virtual bool				wn_PnPoly(Sexy::Point theTestPoint);
		virtual bool				cn_PnPoly(Sexy::Point theTestPoint);

	public:
		// METADATA Tags Enumeration
		// When adding File attributes, add to the END of this list.
		enum{ADDITIVE = 0, POSITION = 1, TEXTURE_PATH = 2, POLYGON_POINTS = 3, WAY_POINTS = 4, ANIMATION_DATA= 5};

	};

	class hgeParticleManager
	{
	public:
		hgeParticleManager(float fps=0.0f);
		virtual ~hgeParticleManager();

		virtual void		Update(float dt);
		virtual void		Render( Graphics *g );

		hgeParticleSystem*	SpawnPS(const char *filename, DDImage *sprite, float x, float y, bool parseMetaData = true, bool old_format=true, Physics* physics = NULL); 
		hgeParticleSystem*	SpawnPS(hgeParticleSystemInfo *psi, float x, float y, Physics* physics = NULL);
		hgeParticleSystem*	SpawnPS(hgeParticleSystem *system, float x, float y, Physics* physics = NULL);

		virtual bool				IsPSAlive(hgeParticleSystem *ps) const;
		virtual void				Translate(float x, float y);
		virtual void				GetTranslation(float *dx, float *dy) const {*dx=tX; *dy=tY;}
		virtual void				KillPS(hgeParticleSystem *ps);
		virtual void				KillAll();
		virtual void				SetEmissions(int theRate);
                virtual void                               SetFPS(float fps) { fFPS = fps; }
                virtual float                               GetFPS() { return fFPS; }  

	protected:
		hgeParticleManager(const hgeParticleManager &);
		hgeParticleManager&	operator= (const hgeParticleManager &);

		float				fFPS;
		int				nPS;
		float				tX;
		float				tY;
		hgeParticleSystem*	psList[MAX_PSYSTEMS];
	};
}

#endif