Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
190 lines
4.9 KiB
C++
190 lines
4.9 KiB
C++
//==========================================================================//
|
|
// File: gosFX_PertCloud.hpp //
|
|
// Project: gosFX //
|
|
// Contents: PertCloud Component //
|
|
//--------------------------------------------------------------------------//
|
|
// Date Who Modification //
|
|
// 09/28/98 JTR Created //
|
|
// //
|
|
//--------------------------------------------------------------------------//
|
|
// Copyright (C) 1997-1998, Virtual World Entertainment, Inc. //
|
|
// All Rights reserved worldwide //
|
|
// This unpublished sourcecode is PROPRIETARY and CONFIDENTIAL //
|
|
//==========================================================================//
|
|
//
|
|
#pragma once
|
|
|
|
#include "gosFX.hpp"
|
|
#include "SpinningCloud.hpp"
|
|
#include <MLR\MLR.hpp>
|
|
|
|
namespace MidLevelRenderer {class MLRNGonCloud;}
|
|
|
|
namespace gosFX
|
|
{
|
|
//############################################################################
|
|
//######################## PertCloud__Specification #############################
|
|
//############################################################################
|
|
|
|
class PertCloud__Specification:
|
|
public SpinningCloud__Specification
|
|
{
|
|
//----------------------------------------------------------------------
|
|
// Constructors/Destructors
|
|
//
|
|
protected:
|
|
PertCloud__Specification(
|
|
Stuff::MemoryStream *stream,
|
|
int gfx_version
|
|
);
|
|
|
|
public:
|
|
typedef SpinningCloud__Specification BaseClass;
|
|
|
|
PertCloud__Specification(unsigned sides);
|
|
~PertCloud__Specification();
|
|
|
|
static PertCloud__Specification*
|
|
Make(
|
|
Stuff::MemoryStream *stream,
|
|
int gfx_version
|
|
);
|
|
|
|
void
|
|
Copy(PertCloud__Specification *spec);
|
|
|
|
void
|
|
Save(Stuff::MemoryStream *stream);
|
|
|
|
void
|
|
BuildDefaults();
|
|
|
|
bool
|
|
IsDataValid(bool fix_data=false);
|
|
|
|
//-------------------------------------------------------------------------
|
|
// FCurves
|
|
//
|
|
public:
|
|
SeededCurveOf<ComplexCurve, SplineCurve,Curve::e_ComplexSplineType>
|
|
m_size;
|
|
SeededCurveOf<ConstantCurve, SplineCurve,Curve::e_ConstantSplineType>
|
|
m_perturbation;
|
|
SeededCurveOf<ComplexCurve, LinearCurve,Curve::e_ComplexLinearType>
|
|
m_pCenterRed,
|
|
m_pCenterGreen,
|
|
m_pCenterBlue,
|
|
m_pCenterAlpha;
|
|
|
|
unsigned
|
|
m_vertices;
|
|
};
|
|
|
|
|
|
//############################################################################
|
|
//######################## SpinningCloud__Particle #############################
|
|
//############################################################################
|
|
|
|
class PertCloud__Particle:
|
|
public SpinningCloud__Particle
|
|
{
|
|
public:
|
|
typedef SpinningCloud__Particle BaseClass;
|
|
|
|
Stuff::Point3D
|
|
m_vertices[MidLevelRenderer::Limits::Max_Number_Of_NGon_Vertices];
|
|
};
|
|
|
|
//############################################################################
|
|
//############################# PertCloud ##################################
|
|
//############################################################################
|
|
|
|
class PertCloud:
|
|
public SpinningCloud
|
|
{
|
|
//----------------------------------------------------------------------------
|
|
// Class Registration Support
|
|
//
|
|
public:
|
|
typedef SpinningCloud BaseClass;
|
|
|
|
static void InitializeClass();
|
|
static void TerminateClass();
|
|
|
|
typedef PertCloud__Specification Specification;
|
|
typedef PertCloud__Particle Particle;
|
|
|
|
protected:
|
|
MidLevelRenderer::MLRNGonCloud * m_cloudImplementation; // Pert to an MLR Pert cloud by Jim
|
|
Stuff::Point3D *m_P_vertices;
|
|
Stuff::RGBAColor *m_P_color;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Class Data Support
|
|
//
|
|
protected:
|
|
PertCloud(
|
|
Specification *spec,
|
|
unsigned flags
|
|
);
|
|
|
|
public:
|
|
~PertCloud();
|
|
|
|
static PertCloud*
|
|
Make(
|
|
Specification *spec,
|
|
unsigned flags
|
|
);
|
|
|
|
Specification*
|
|
GetSpecification()
|
|
{
|
|
Check_Object(this);
|
|
return
|
|
Cast_Object(Specification*, m_specification);
|
|
}
|
|
Particle*
|
|
GetParticle(unsigned index)
|
|
{
|
|
Check_Object(this); Check_Object(GetSpecification());
|
|
return
|
|
Cast_Pointer(
|
|
Particle*,
|
|
&m_data[index*GetSpecification()->m_particleClassSize]
|
|
);
|
|
}
|
|
|
|
static ClassData
|
|
*DefaultData;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Testing
|
|
//
|
|
public:
|
|
void
|
|
TestInstance() const;
|
|
|
|
//----------------------------------------------------------------------------
|
|
// API
|
|
//
|
|
protected:
|
|
void
|
|
SetVertexData(
|
|
unsigned index,
|
|
const Stuff::LinearMatrix4D &pert_to_cloud
|
|
);
|
|
void
|
|
CreateNewParticle(
|
|
unsigned index,
|
|
Stuff::Point3D *translation
|
|
);
|
|
void
|
|
DestroyParticle(unsigned index);
|
|
|
|
public:
|
|
void
|
|
Draw(DrawInfo *info);
|
|
};
|
|
}
|