mirror of
				https://github.com/AxioDL/metaforce.git
				synced 2025-10-27 15:30:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef __URDE_CPARTICLEGLOBALS_HPP__
 | |
| #define __URDE_CPARTICLEGLOBALS_HPP__
 | |
| 
 | |
| #include "zeus/CVector3f.hpp"
 | |
| #include "zeus/CColor.hpp"
 | |
| #include "RetroTypes.hpp"
 | |
| 
 | |
| namespace urde
 | |
| {
 | |
| class CElementGen;
 | |
| class CParticleGlobals
 | |
| {
 | |
| public:
 | |
|     static int g_EmitterTime;
 | |
|     static float g_EmitterTimeReal;
 | |
|     static void SetEmitterTime(int frame)
 | |
|     {
 | |
|         g_EmitterTime = frame;
 | |
|         g_EmitterTimeReal = frame;
 | |
|     }
 | |
| 
 | |
|     static int g_ParticleLifetime;
 | |
|     static float g_ParticleLifetimeReal;
 | |
|     static void SetParticleLifetime(int frame)
 | |
|     {
 | |
|         g_ParticleLifetime = frame;
 | |
|         g_ParticleLifetimeReal = frame;
 | |
|     }
 | |
| 
 | |
|     static int g_ParticleLifetimePercentage;
 | |
|     static float g_ParticleLifetimePercentageReal;
 | |
|     static float g_ParticleLifetimePercentageRemainder;
 | |
|     static void UpdateParticleLifetimeTweenValues(int frame)
 | |
|     {
 | |
|         float lt = g_ParticleLifetime != 0.0f ? g_ParticleLifetime : 1.0f;
 | |
|         g_ParticleLifetimePercentageReal = 100.0f * frame / lt;
 | |
|         g_ParticleLifetimePercentage = g_ParticleLifetimePercentageReal;
 | |
|         g_ParticleLifetimePercentageRemainder = g_ParticleLifetimePercentageReal - g_ParticleLifetimePercentage;
 | |
|     }
 | |
| 
 | |
|     static float g_papValues[8];
 | |
| 
 | |
|     struct SParticleSystem
 | |
|     {
 | |
|         FourCC x0_type;
 | |
|         CElementGen* x4_system;
 | |
|     };
 | |
| 
 | |
|     static SParticleSystem* g_currentParticleSystem;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif // __URDE_CPARTICLEGLOBALS_HPP__
 |