Fixed: Warnings, throw(NLMISC::EStream) deprecated in C++11 and removed in C++17, and class keyword is useless
--HG-- branch : develop
This commit is contained in:
parent
f790af1d57
commit
613d4ddc34
333 changed files with 707 additions and 707 deletions
|
@ -55,7 +55,7 @@ public:
|
|||
CFlareShape();
|
||||
|
||||
/// serial this shape
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ public:
|
|||
// This is slow but doesn't matter since used at mesh building....
|
||||
CCorner();
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
/// A Triangle face.
|
||||
|
@ -94,7 +94,7 @@ public:
|
|||
CCorner Corner[3];
|
||||
sint32 MaterialId;
|
||||
sint32 SmoothGroup;
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
|
||||
|
@ -118,7 +118,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
struct CVertLink
|
||||
|
@ -203,7 +203,7 @@ public:
|
|||
CMeshBuild();
|
||||
|
||||
// Serialization
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
};
|
||||
//@}
|
||||
|
@ -257,7 +257,7 @@ public:
|
|||
virtual void render(IDriver *drv, CTransformShape *trans, bool opaquePass);
|
||||
|
||||
/// serial this mesh.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CMesh);
|
||||
|
||||
/// get trinagle count.
|
||||
|
@ -370,7 +370,7 @@ public:
|
|||
virtual float getNumTriangles (float distance);
|
||||
|
||||
/// serial this mesh.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CMeshGeom);
|
||||
|
||||
// profile
|
||||
|
|
|
@ -146,7 +146,7 @@ public:
|
|||
CMeshBaseBuild();
|
||||
|
||||
// Serialization is not used
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
};
|
||||
//@}
|
||||
|
||||
|
@ -201,7 +201,7 @@ public:
|
|||
// @}
|
||||
|
||||
/// serial the base Part of this mesh.
|
||||
void serialMeshBase(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialMeshBase(NLMISC::IStream &f);
|
||||
|
||||
/// Flush textures
|
||||
void flushTextures (IDriver &driver, uint selectedTexture);
|
||||
|
|
|
@ -43,7 +43,7 @@ public:
|
|||
|
||||
std::vector<uint32> VertRefs; // Array of vertices reference
|
||||
|
||||
void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial (NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
// ***************************************************************************
|
||||
|
@ -90,7 +90,7 @@ public:
|
|||
NLMISC::CObjectVector<CRawSkinVertex*, false> &vertexRemap,
|
||||
std::vector<CAnimatedMorph> *pBSFactor);
|
||||
|
||||
void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial (NLMISC::IStream &f);
|
||||
|
||||
private:
|
||||
|
||||
|
|
|
@ -115,7 +115,7 @@ public:
|
|||
virtual float getNumTriangles (float distance);
|
||||
|
||||
/// serial this meshGeom.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CMeshMRMGeom);
|
||||
|
||||
/// Scene profile
|
||||
|
@ -579,11 +579,11 @@ private:
|
|||
|
||||
|
||||
/// load the header of this mesh. return the version of the header.
|
||||
sint loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
sint loadHeader(NLMISC::IStream &f);
|
||||
/// load this mesh.
|
||||
void load(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void load(NLMISC::IStream &f);
|
||||
/// save the entire mesh.
|
||||
void save(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void save(NLMISC::IStream &f);
|
||||
|
||||
// Build bone Usage information for serialized mesh <= version 2.
|
||||
void buildBoneUsageVer2 ();
|
||||
|
@ -702,7 +702,7 @@ public:
|
|||
virtual float getNumTriangles (float distance);
|
||||
|
||||
/// serial this mesh.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CMeshMRM);
|
||||
|
||||
/// Get bbox.
|
||||
|
|
|
@ -125,7 +125,7 @@ public:
|
|||
virtual void getAABBox(NLMISC::CAABBox &bbox) const;
|
||||
|
||||
/// serial this mesh.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
/// Declare name of the shape
|
||||
NLMISC_DECLARE_CLASS(CMeshMultiLod);
|
||||
|
@ -238,7 +238,7 @@ private:
|
|||
std::vector<TCoarseMeshIndexType> CoarseTriangles;
|
||||
|
||||
/// Serial
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/// Is Opaque ?
|
||||
bool isOpaque() { return (Flags&IsOpaque)!=0; }
|
||||
|
|
|
@ -65,7 +65,7 @@ public:
|
|||
const NLMISC::CMatrix &invertedModelMat,
|
||||
const NLMISC::CVector &viewerPos);
|
||||
virtual void end(IDriver *drv);
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
virtual void setupForMaterial(const CMaterial &mat,
|
||||
IDriver *drv,
|
||||
CScene *scene,
|
||||
|
|
|
@ -90,7 +90,7 @@ public:
|
|||
virtual float getMaxVertexMove();
|
||||
|
||||
// Serial.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CMeshVPWindTree);
|
||||
|
||||
// @}
|
||||
|
|
|
@ -54,9 +54,9 @@ public:
|
|||
void build(std::vector<TPackedZoneBaseSPtr> &packesZones);
|
||||
bool raytrace(const NLMISC::CVector &start, const NLMISC::CVector &end, NLMISC::CVector &inter, std::vector<NLMISC::CTriangle> *testedTriangles = NULL, NLMISC::CVector *normal = NULL);
|
||||
void getZones(std::vector<TPackedZoneBaseSPtr> &zones);
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
// just serialize the header, containing name of the zones this CPackedWorld was built from
|
||||
void serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialZoneNames(NLMISC::IStream &f);
|
||||
/** Roughly select triangles that are within a convex 2D polygon (world coordinates)
|
||||
* Selection is not exact, because limited to the resolution of the grid into which is packed each zone.
|
||||
* Triangle that are within are guaranteed to be selected, however.
|
||||
|
@ -68,7 +68,7 @@ private:
|
|||
public:
|
||||
TPackedZoneBaseSPtr Zone;
|
||||
uint32 RaytraceCounter;
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
CPackedZoneBase *pz = Zone;
|
||||
|
@ -81,7 +81,7 @@ private:
|
|||
{
|
||||
public:
|
||||
std::vector<uint32> IDs; // make a class from this vector just for serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialCont(IDs);
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ class CPackedVertex
|
|||
public:
|
||||
uint16 X, Y, Z;
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(X, Y, Z);
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ class CPackedTri
|
|||
public:
|
||||
uint32 V0, V1, V2;
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(V0, V1, V2);
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ class CPackedTri16
|
|||
public:
|
||||
uint16 V0, V1, V2;
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(V0, V1, V2);
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ public:
|
|||
sint32 ZoneY;
|
||||
public:
|
||||
virtual ~CPackedZoneBase() {}
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream) = 0;
|
||||
virtual void serial(NLMISC::IStream &f) = 0;
|
||||
// TMP For debug : render position covered by a frustum
|
||||
virtual void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]) = 0;
|
||||
// raytracing test
|
||||
|
@ -138,7 +138,7 @@ public:
|
|||
sint32 zoneX,
|
||||
sint32 zoneY
|
||||
);
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
// TMP For debug : render porition covered by a frustum
|
||||
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
||||
// try to build a 16 bit version of this packed zone to save some more place
|
||||
|
@ -183,7 +183,7 @@ public:
|
|||
NLMISC_DECLARE_CLASS(CPackedZone16)
|
||||
CPackedZone16();
|
||||
//
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
// TMP For debug : render position covered by a frustum
|
||||
void render(CVertexBuffer &vb, IDriver &drv, CMaterial &mat, CMaterial &wiredMaterial, const NLMISC::CMatrix &camMat, uint batchSize, const NLMISC::CVector localFrustCorners[8]);
|
||||
// raytracing test
|
||||
|
|
|
@ -84,7 +84,7 @@ public:
|
|||
/// dtor
|
||||
virtual ~CParticleSystem();
|
||||
/// serialize this particle system
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
/** Merge this system with a system instanciated from the given shape
|
||||
* NB : This is for edition purpose, this is slow
|
||||
* \return true if the operation could be performed. It can fail when this cause the system the system to last forever,
|
||||
|
|
|
@ -102,7 +102,7 @@ class CParticleSystemProcess : public NLMISC::IStreamable
|
|||
* Everything is saved, except for the fontManager and the fontGenerator.
|
||||
* They must be set again if the PSToolRender pass is used.
|
||||
*/
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream) ;
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
/// @}
|
||||
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ public:
|
|||
// @}
|
||||
|
||||
/// serial the shape
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CParticleSystemShape);
|
||||
|
||||
|
||||
|
|
|
@ -202,7 +202,7 @@ public:
|
|||
uint size() const { return _Size; }
|
||||
|
||||
/// serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
if (f.isReading())
|
||||
{
|
||||
|
@ -262,7 +262,7 @@ public:
|
|||
CPSAttrib();
|
||||
|
||||
/// Serialization method
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
// swap with another vector
|
||||
void swap(CPSAttrib<T> &other);
|
||||
|
@ -429,7 +429,7 @@ void CPSAttrib<T>::remove(uint32 index)
|
|||
}
|
||||
|
||||
template <typename T>
|
||||
void CPSAttrib<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSAttrib<T>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
// version 4 to 5 => bug with size being > capacity
|
||||
sint ver = f.serialVersion(5);
|
||||
|
|
|
@ -60,7 +60,7 @@ struct CPSInputType
|
|||
uint32 UserParamNum;
|
||||
};
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialEnum(InputType);
|
||||
switch(InputType)
|
||||
|
@ -124,7 +124,7 @@ public:
|
|||
}
|
||||
|
||||
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_NbCycles);
|
||||
|
|
|
@ -103,7 +103,7 @@ public:
|
|||
uint32 srcStep = (1 << 16)
|
||||
) const;
|
||||
|
||||
virtual void serial (NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial (NLMISC::IStream &f);
|
||||
virtual void deleteElement (uint32 index);
|
||||
virtual void newElement (const CPSEmitterInfo &info);
|
||||
virtual void resize (uint32 capacity, uint32 nbPresentElements);
|
||||
|
|
|
@ -729,7 +729,7 @@ inline void CPSAttribMakerBinOp<T>::makeN(CPSLocated *loc,
|
|||
|
||||
//=================================================================================================================
|
||||
template <class T>
|
||||
inline void CPSAttribMakerBinOp<T>::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
inline void CPSAttribMakerBinOp<T>::serial (NLMISC::IStream &f)
|
||||
{
|
||||
if (f.isReading())
|
||||
{
|
||||
|
|
|
@ -96,7 +96,7 @@ template <typename T, class F> class CPSAttribMakerT : public CPSAttribMaker<T>
|
|||
|
||||
|
||||
/// serialization of the object
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
sint ver = f.serialVersion(2);
|
||||
CPSAttribMaker<T>::serial(f);
|
||||
|
@ -1624,7 +1624,7 @@ public:
|
|||
}
|
||||
|
||||
/// serialisation of the object. Derivers MUST call this, (if they use the attribute of this class at least)
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
|
||||
f.serialVersion(1);
|
||||
|
@ -1744,7 +1744,7 @@ public:
|
|||
_MaxValue = other._MaxValue;
|
||||
}
|
||||
// serial. Should update min / max when reading
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
virtual uint32 getMinValue(void) const { return _MinValue; }
|
||||
virtual uint32 getMaxValue(void) const { return _MaxValue; }
|
||||
virtual void newElement(const CPSEmitterInfo &info);
|
||||
|
@ -1767,7 +1767,7 @@ public:
|
|||
_MaxValue = other._MaxValue;
|
||||
}
|
||||
// serial. Should update min / max when reading
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
virtual sint32 getMinValue(void) const { return _MinValue; }
|
||||
virtual sint32 getMaxValue(void) const { return _MaxValue; }
|
||||
virtual void newElement(const CPSEmitterInfo &info);
|
||||
|
@ -1790,7 +1790,7 @@ public:
|
|||
_MaxValue = other._MaxValue;
|
||||
}
|
||||
// serial. Should update min / max when reading
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
virtual float getMinValue(void) const { return _MinValue; }
|
||||
virtual float getMaxValue(void) const { return _MaxValue; }
|
||||
virtual void newElement(const CPSEmitterInfo &info);
|
||||
|
|
|
@ -93,7 +93,7 @@ public:
|
|||
CPSValueBlendFunc() {}
|
||||
|
||||
/// serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_StartValue, _EndValue);
|
||||
|
@ -228,7 +228,7 @@ public:
|
|||
CPSValueBlendSampleFunc() {}
|
||||
|
||||
/// serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
if (f.isReading())
|
||||
|
@ -353,7 +353,7 @@ public:
|
|||
}
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
T getMaxValue(void) const
|
||||
|
@ -493,7 +493,7 @@ void CPSValueGradientFunc<T>::setValuesUnpacked(const T *valueTab, uint32 numVal
|
|||
|
||||
|
||||
template <typename T>
|
||||
void CPSValueGradientFunc<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSValueGradientFunc<T>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_NbStages);
|
||||
|
|
|
@ -66,7 +66,7 @@ public:
|
|||
{
|
||||
CPSValueBlendFunc<NLMISC::CRGBA>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
||||
}
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSValueBlendFunc<NLMISC::CRGBA>::serial(f);
|
||||
|
@ -100,7 +100,7 @@ public:
|
|||
{
|
||||
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::setValues(convertVBColor(startValue, _ColorType), convertVBColor(endValue, _ColorType));
|
||||
}
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSValueBlendSampleFunc<NLMISC::CRGBA, RGBA_BLENDER_NUM_VALUES>::serial(f);
|
||||
|
@ -124,7 +124,7 @@ public:
|
|||
NLMISC::CRGBA getValue(uint index) const;
|
||||
void setValues(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
||||
void setValuesUnpacked(const NLMISC::CRGBA *valueTab, uint32 numValues, uint32 nbStages);
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSValueGradientFunc<NLMISC::CRGBA>::serial(f);
|
||||
|
@ -153,7 +153,7 @@ public:
|
|||
this->_F.setColorType(colorType);
|
||||
}
|
||||
// serialisation should always be done in RGBA mode, so enforce that
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSAttribMakerT<NLMISC::CRGBA, F>::serial(f);
|
||||
|
@ -229,7 +229,7 @@ public:
|
|||
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
||||
virtual void setDefaultValue(NLMISC::CRGBA defaultValue);
|
||||
virtual NLMISC::CRGBA getDefaultValue(void) const;
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
protected:
|
||||
CVertexBuffer::TVertexColorType _ColorType;
|
||||
};
|
||||
|
@ -244,7 +244,7 @@ public:
|
|||
NLMISC_DECLARE_CLASS(CPSColorBinOp);
|
||||
CPSAttribMakerBase *clone() const { return new CPSColorBinOp(*this); }
|
||||
virtual void setColorType(CVertexBuffer::TVertexColorType colorType);
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public:
|
|||
NLMISC_DECLARE_CLASS(CPSDot);
|
||||
|
||||
///serialisation
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/// return true if there are transparent faces in the object
|
||||
virtual bool hasTransparentFaces(void);
|
||||
|
|
|
@ -171,7 +171,7 @@ public:
|
|||
const CPSAttribMaker<uint32> *getGenNbScheme(void) const { return _GenNbScheme; }
|
||||
|
||||
/// Serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
///\name Speed vector options
|
||||
//@{
|
||||
|
@ -424,7 +424,7 @@ class CPSModulatedEmitter
|
|||
bool useEmitteeSpeedScheme(void) const { return _EmitteeSpeedScheme != NULL; }
|
||||
|
||||
/// serialization
|
||||
void serialEmitteeSpeedScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialEmitteeSpeedScheme(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -470,7 +470,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSEmitterDirectionnal);
|
||||
|
@ -506,7 +506,7 @@ class CPSRadialEmitter : public CPSEmitterDirectionnal
|
|||
if (CParticleSystem::getSerializeIdentifierFlag()) _Name = std::string("RadialEmitter");
|
||||
}
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CPSRadialEmitter);
|
||||
virtual void emit(const NLMISC::CVector &srcPos, uint32 index, NLMISC::CVector &pos, NLMISC::CVector &speed);
|
||||
};
|
||||
|
@ -527,7 +527,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSEmitterOmni);
|
||||
|
||||
|
@ -561,7 +561,7 @@ class CPSEmitterRectangle : public CPSEmitter, public CPSModulatedEmitter, publi
|
|||
}
|
||||
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSEmitterRectangle);
|
||||
|
||||
|
@ -636,7 +636,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSEmitterConic);
|
||||
|
||||
|
@ -675,7 +675,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSSphericalEmitter);
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ public:
|
|||
*/
|
||||
CPSFace(CSmartPtr<ITexture> tex = NULL);
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSFace);
|
||||
/** Tells that all faces are turning in the same manner, and only have a rotationnal bias
|
||||
|
|
|
@ -40,7 +40,7 @@ public:
|
|||
*/
|
||||
CPSFaceLookAt(CSmartPtr<ITexture> tex = NULL);
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSFaceLookAt);
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ public:
|
|||
CPSFanLight(uint32 nbFans = 7);
|
||||
/// Dtor
|
||||
~CPSFanLight();
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
|
||||
// Set the number of fans used for drawing (minimum is 3, maximum is 128)
|
||||
|
|
|
@ -104,7 +104,7 @@ class CPSFloatCurveFunctor
|
|||
CCtrlPoint(float date, float value) : Date(date), Value(value) { nlassert(Date >= 0 && Date <= 1); }
|
||||
float Date;
|
||||
float Value;
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(Date, Value);
|
||||
}
|
||||
|
@ -166,7 +166,7 @@ class CPSFloatCurveFunctor
|
|||
float getValue(float date) const;
|
||||
|
||||
/// serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
float getMinValue() const { return _MinValue; }
|
||||
float getMaxValue() const { return _MaxValue; }
|
||||
|
|
|
@ -70,7 +70,7 @@ public:
|
|||
virtual void show() = 0;
|
||||
|
||||
/// Serial the force definition. MUST be called by deriver during their serialisation
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
/// check whether this force is integrable over time. The default is false
|
||||
virtual bool isIntegrable(void) const { return false; }
|
||||
|
@ -175,7 +175,7 @@ public:
|
|||
/// get the attribute maker for a non constant intensity
|
||||
CPSAttribMaker<float> *getIntensityScheme(void) { return _IntensityScheme; }
|
||||
const CPSAttribMaker<float> *getIntensityScheme(void) const { return _IntensityScheme; }
|
||||
void serialForceIntensity(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialForceIntensity(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -209,7 +209,7 @@ protected:
|
|||
class CPSForceIntensityHelper : public CPSForce, public CPSForceIntensity
|
||||
{
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream) ;
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
virtual CPSLocated *getForceIntensityOwner(void) { return _Owner; }
|
||||
|
@ -241,7 +241,7 @@ protected:
|
|||
*
|
||||
* // you can provide a serialization method. Note that that if the functor parameters are set before each use,
|
||||
* // it useless to serial something ...
|
||||
* void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
* void serial(NLMISC::IStream &f)
|
||||
*
|
||||
* protected:
|
||||
* ...
|
||||
|
@ -275,7 +275,7 @@ public:
|
|||
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
CPSForce::serial(f);
|
||||
|
@ -354,7 +354,7 @@ class CPSDirectionnalForce : public CPSForceIntensityHelper, public CPSDirection
|
|||
}
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSDirectionnalForce);
|
||||
|
@ -397,7 +397,7 @@ public:
|
|||
}
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSGravity);
|
||||
|
||||
|
@ -443,7 +443,7 @@ public:
|
|||
}
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSCentralGravity);
|
||||
|
@ -464,7 +464,7 @@ public:
|
|||
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
/// Compute the force on the targets
|
||||
|
@ -498,7 +498,7 @@ public:
|
|||
speed -= (CParticleSystem::EllapsedTime * _K * invMass * speed);
|
||||
}
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
// we don't save intensity info : it is saved by the owning object (and set before each use of this functor)
|
||||
|
@ -539,7 +539,7 @@ public:
|
|||
NLMISC_DECLARE_CLASS(CPSFluidFriction)
|
||||
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
CIsotropicForceT<CPSFluidFrictionFunctor>::serial(f);
|
||||
|
@ -571,7 +571,7 @@ public:
|
|||
|
||||
NLMISC_DECLARE_CLASS(CPSBrownianForce)
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
/// We provide a kind of integration on a predefined sequence
|
||||
virtual bool isIntegrable(void) const;
|
||||
|
@ -648,7 +648,7 @@ struct CPSTurbulForceFunc
|
|||
*/
|
||||
}
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_Scale, _NumOctaves);
|
||||
|
@ -686,7 +686,7 @@ public:
|
|||
|
||||
NLMISC_DECLARE_CLASS(CPSTurbul)
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
CIsotropicForceT<CPSTurbulForceFunc>::serial(f);
|
||||
|
@ -758,7 +758,7 @@ public:
|
|||
|
||||
|
||||
// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
|
||||
|
@ -801,7 +801,7 @@ class CPSMagneticForce : public CPSDirectionnalForce
|
|||
}
|
||||
virtual void computeForces(CPSLocated &target);
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CPSMagneticForce);
|
||||
};
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ public:
|
|||
~CPSLight();
|
||||
NLMISC_DECLARE_CLASS(CPSLight);
|
||||
/// Serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
virtual uint32 getType(void) const;
|
||||
virtual uint32 getPriority(void) const { return 600; }
|
||||
|
|
|
@ -356,7 +356,7 @@ public:
|
|||
void resize(uint32 newSize);
|
||||
|
||||
/// serialization
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/// Shortcut to get an instance of the 3d driver
|
||||
IDriver *getDriver() const;
|
||||
|
@ -730,7 +730,7 @@ public:
|
|||
/// ctor
|
||||
CPSLocatedBindable();
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
/** this should be called before to delete any bindable inserted in a system, but this is done
|
||||
* by the system, so you should never need calling it. This has been introduced because calls in dtor are not polymorphic
|
||||
* to derived class (which are already destroyed anyway), and some infos are needed in some dtor. The default behaviour does nothing
|
||||
|
@ -1010,7 +1010,7 @@ public:
|
|||
*/
|
||||
virtual void releaseTargetRsc(CPSLocated * /* target */) {}
|
||||
/// Seralization, must be called by derivers
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
/// Finalize this object : the default is to call releaseTargetRsc on targets
|
||||
virtual void finalize(void);
|
||||
virtual ~CPSTargetLocatedBindable();
|
||||
|
|
|
@ -82,7 +82,7 @@ public:
|
|||
std::string getShape(void) const { return _Shape; }
|
||||
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
virtual ~CPSMesh();
|
||||
|
||||
|
@ -271,7 +271,7 @@ public:
|
|||
|
||||
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSConstraintMesh);
|
||||
|
@ -334,7 +334,7 @@ public:
|
|||
float WRotSpeed; /* = 0 */
|
||||
float WRotAccel; /* = 0 */
|
||||
CGlobalTexAnim();
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
/// Build a texture matrix from a date and this obj.
|
||||
void buildMatrix(TAnimationTime date, NLMISC::CMatrix &dest);
|
||||
};
|
||||
|
@ -587,7 +587,7 @@ protected:
|
|||
struct CGlobalTexAnims
|
||||
{
|
||||
CGlobalTexAnim Anims[IDRV_MAT_MAXTEXTURES];
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
typedef CUniquePtr<CGlobalTexAnims> PGlobalTexAnims;
|
||||
|
|
|
@ -107,7 +107,7 @@ public:
|
|||
virtual uint32 getNumWantedTris() const = 0;
|
||||
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
/// version 3 : global color lighting
|
||||
/// version 2 : auto-lod saved
|
||||
|
@ -210,7 +210,7 @@ class CPSColoredParticle
|
|||
virtual ~CPSColoredParticle();
|
||||
|
||||
/// serialization.
|
||||
void serialColorScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialColorScheme(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -273,7 +273,7 @@ class CPSSizedParticle
|
|||
virtual ~CPSSizedParticle();
|
||||
|
||||
/// serialization. We choose a different name because of multiple-inheritance
|
||||
void serialSizeScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialSizeScheme(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -335,7 +335,7 @@ class CPSRotated2DParticle
|
|||
virtual ~CPSRotated2DParticle();
|
||||
|
||||
/// serialization. We choose a different name because of multiple-inheritance
|
||||
void serialAngle2DScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialAngle2DScheme(NLMISC::IStream &f);
|
||||
|
||||
|
||||
|
||||
|
@ -453,7 +453,7 @@ class CPSTexturedParticle
|
|||
virtual ~CPSTexturedParticle();
|
||||
|
||||
/// serialization. We choose a different name because of multiple-inheritance
|
||||
void serialTextureScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialTextureScheme(NLMISC::IStream &f);
|
||||
|
||||
void enumTexs(std::vector<NLMISC::CSmartPtr<ITexture> > &dest);
|
||||
|
||||
|
@ -576,7 +576,7 @@ public:
|
|||
}
|
||||
|
||||
/// serial this object
|
||||
void serialMultiTex(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialMultiTex(NLMISC::IStream &f);
|
||||
|
||||
/** setup a material from this object and a primary texture
|
||||
* drv is used to check the device caps.
|
||||
|
@ -683,7 +683,7 @@ class CPSRotated3DPlaneParticle
|
|||
virtual ~CPSRotated3DPlaneParticle();
|
||||
|
||||
/// serialization. We choose a different name because of multiple-inheritance
|
||||
void serialPlaneBasisScheme(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialPlaneBasisScheme(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
/// if this is false, constant size will be used instead of a scheme
|
||||
|
@ -806,7 +806,7 @@ public:
|
|||
enum TBlendingMode { add, modulate, alphaBlend, alphaTest };
|
||||
|
||||
/// serialization (not named 'serial' because it will be used via multiple-inheritance)
|
||||
void serialMaterial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialMaterial(NLMISC::IStream &f);
|
||||
|
||||
/// set the blending mode. The default is ass
|
||||
void setBlendingMode(CPSMaterial::TBlendingMode mode);
|
||||
|
|
|
@ -66,7 +66,7 @@ struct CPlaneBasis
|
|||
}
|
||||
|
||||
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(X, Y) ;
|
||||
}
|
||||
|
|
|
@ -128,7 +128,7 @@ class CPSPlaneBasisFollowSpeed : public CPSAttribMaker<CPlaneBasis>
|
|||
NLMISC_DECLARE_CLASS(CPSPlaneBasisFollowSpeed);
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
virtual void serial(NLMISC::IStream &f)
|
||||
{
|
||||
// version 2 : added projection plane
|
||||
// version 1 : nothing to save here
|
||||
|
@ -192,7 +192,7 @@ public:
|
|||
/// get the number of samples for the rotation
|
||||
uint32 getNumSamples(void) const;
|
||||
/// serial this object
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
protected:
|
||||
CPSVector<CPlaneBasis>::V _PBTab;
|
||||
uint32 _NbSamples;
|
||||
|
|
|
@ -114,7 +114,7 @@ protected:
|
|||
void updateVbColNUVForRender(CVertexBuffer &vb, uint32 startIndex, uint32 numQuad, uint32 srcStep, IDriver &drv);
|
||||
|
||||
/// DERIVERS MUST CALL this
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
virtual CPSLocated *getColorOwner(void) { return _Owner; }
|
||||
virtual CPSLocated *getSizeOwner(void) { return _Owner; }
|
||||
virtual CPSLocated *getTextureIndexOwner(void) { return _Owner; }
|
||||
|
|
|
@ -55,7 +55,7 @@ public:
|
|||
/// dtor
|
||||
~CPSRibbon();
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
//
|
||||
NLMISC_DECLARE_CLASS(CPSRibbon);
|
||||
///@}
|
||||
|
|
|
@ -52,7 +52,7 @@ public:
|
|||
///@{
|
||||
CPSRibbonBase();
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
///@}
|
||||
|
||||
///\name Behaviour
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
/// dtor
|
||||
~CPSRibbonLookAt();
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
//
|
||||
NLMISC_DECLARE_CLASS(CPSRibbonLookAt);
|
||||
///@}
|
||||
|
|
|
@ -54,7 +54,7 @@ public:
|
|||
float getRadiusCut(void) const { return _RadiusCut; }
|
||||
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
NLMISC_DECLARE_CLASS(CPSShockWave);
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ public:
|
|||
/// dtor
|
||||
~CPSSound();
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
|
||||
/// return this bindable type
|
||||
|
|
|
@ -37,7 +37,7 @@ public:
|
|||
/// dtor
|
||||
~CPSTailDot();
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
//
|
||||
NLMISC_DECLARE_CLASS(CPSTailDot);
|
||||
///@}
|
||||
|
|
|
@ -82,7 +82,7 @@ public:
|
|||
|
||||
|
||||
/// serialization, DERIVER must override this, and call the parent version
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
/** Inherited from CPSTargetLocatedBindable. It's called when one of the targets has been detroyed or detached
|
||||
|
@ -155,7 +155,7 @@ class CPSZonePlane : public CPSZone, public IPSMover
|
|||
virtual NLMISC::CVector getNormal(uint32 index);
|
||||
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
protected:
|
||||
TPSAttribVector _Normal;
|
||||
|
@ -176,7 +176,7 @@ struct CRadiusPair
|
|||
{
|
||||
// the adius, and the square radius
|
||||
float R, R2;
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serial(R, R2);
|
||||
}
|
||||
|
@ -205,7 +205,7 @@ class CPSZoneSphere : public CPSZone, public IPSMover
|
|||
|
||||
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
// inherited from IPSMover
|
||||
|
@ -257,7 +257,7 @@ class CPSZoneDisc : public CPSZone, public IPSMover
|
|||
virtual NLMISC::CVector getNormal(uint32 index);
|
||||
virtual void setNormal(uint32 index, NLMISC::CVector n);
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
|
||||
|
@ -303,7 +303,7 @@ class CPSZoneCylinder : public CPSZone, public IPSMover
|
|||
virtual NLMISC::CVector getScale(uint32 k) const;
|
||||
|
||||
// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
|
||||
|
@ -350,7 +350,7 @@ class CPSZoneRectangle : public CPSZone, public IPSMover
|
|||
|
||||
|
||||
// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
// inherited from IPSMover
|
||||
virtual bool supportUniformScaling(void) const { return true; }
|
||||
|
|
|
@ -70,7 +70,7 @@ public:
|
|||
// assignement
|
||||
CSegRemanenceShape &operator = (const CSegRemanenceShape &other);
|
||||
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CSegRemanenceShape);
|
||||
//@}
|
||||
|
||||
|
|
|
@ -201,7 +201,7 @@ public:
|
|||
IShape* getShapePointer () const;
|
||||
|
||||
/// serial the shape.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
private:
|
||||
IShape* _Shape;
|
||||
};
|
||||
|
|
|
@ -49,7 +49,7 @@ public:
|
|||
std::vector<uint8> ActiveBones;
|
||||
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
};
|
||||
|
||||
public:
|
||||
|
@ -94,7 +94,7 @@ public:
|
|||
virtual float getNumTriangles (float distance);
|
||||
|
||||
/// serial this skeletonshape.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CSkeletonShape);
|
||||
|
||||
/// flush textures used by this shape.
|
||||
|
|
|
@ -359,7 +359,7 @@ public:
|
|||
virtual bool allowDegradation() const { return false; }
|
||||
|
||||
/// serial ITexture basic infos (clamp ...).
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
/** Select a texture among several other (if this texture is a set of texture such as CTextureMultiFile)
|
||||
* The default does nothing
|
||||
|
|
|
@ -74,7 +74,7 @@ public:
|
|||
virtual void release();
|
||||
|
||||
// serial this texture datas
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
private:
|
||||
uint16 _BlendFactor;
|
||||
|
|
|
@ -47,7 +47,7 @@ public:
|
|||
const ITexture *getHeightMap() const { return _HeightMap; };
|
||||
|
||||
// serial this texture datas
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
virtual bool supportSharing() const;
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ public:
|
|||
virtual bool isTextureCube() const { return true; }
|
||||
|
||||
/// Save the texture file name.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CTextureCube);
|
||||
|
||||
/// If the face support multiple texture (such has CTextureMultiFile), this allow to select the active set
|
||||
|
|
|
@ -81,7 +81,7 @@ public:
|
|||
/// TextureDLM are system. Do not need to serialize them...
|
||||
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
||||
CTextureDLM() {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||
NLMISC_DECLARE_CLASS(CTextureDLM);
|
||||
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public:
|
|||
const ITexture *getHeightMap() const { return _HeightMap; };
|
||||
|
||||
// serial this texture datas
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
virtual bool supportSharing() const;
|
||||
virtual std::string getShareName() const;
|
||||
//
|
||||
|
|
|
@ -185,7 +185,7 @@ private:
|
|||
void rebuildPatch (const CVector2s texturePos, const CPatchIdent &pid);
|
||||
|
||||
/// From IStreamable
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {}
|
||||
virtual void serial(NLMISC::IStream &/* f */) {}
|
||||
|
||||
// Some static buffers
|
||||
static NLMISC::CRGBA _LightmapExpanded[];
|
||||
|
|
|
@ -122,7 +122,7 @@ public:
|
|||
void doGenerate(bool async = false);
|
||||
|
||||
/// Save the texture file name.
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CTextureFile);
|
||||
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ private:
|
|||
|
||||
/// Todo: serialize a font texture.
|
||||
public:
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||
NLMISC_DECLARE_CLASS(CTextureFont);
|
||||
|
||||
};
|
||||
|
|
|
@ -111,7 +111,7 @@ public:
|
|||
void doGenerate(bool async = false);
|
||||
|
||||
/// serialization
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
|
||||
/// a group of 4 uvs
|
||||
|
|
|
@ -160,7 +160,7 @@ public:
|
|||
void setAllowDegradation(bool allow);
|
||||
|
||||
/// Todo: serialize a mem texture.
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||
NLMISC_DECLARE_CLASS(CTextureMem);
|
||||
|
||||
/** This create a white square texture of 1x1
|
||||
|
|
|
@ -70,7 +70,7 @@ public:
|
|||
/// Generate the current selected texture, looking in CPath if necessary.
|
||||
virtual void doGenerate(bool async = false);
|
||||
/// Serial this object
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
virtual void serial(NLMISC::IStream &f);
|
||||
NLMISC_DECLARE_CLASS(CTextureMultiFile);
|
||||
|
||||
private:
|
||||
|
|
|
@ -77,7 +77,7 @@ public:
|
|||
/// TextureNear are system. Do not need to serialize them...
|
||||
// default ctor is required for compilation with NLMISC_DECLARE_CLASS, but never called...
|
||||
CTextureNear() {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) {nlstop;}
|
||||
NLMISC_DECLARE_CLASS(CTextureNear);
|
||||
|
||||
private:
|
||||
|
|
|
@ -77,7 +77,7 @@ public:
|
|||
{
|
||||
return (_Flags&NL3D_CTILE_FREE_FLAG)!=0;
|
||||
}
|
||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
void setFileName (TBitmap bitmapType, const std::string& name)
|
||||
{
|
||||
// not free
|
||||
|
@ -180,7 +180,7 @@ public:
|
|||
|
||||
void clear(){ _TileSet.clear(); }
|
||||
|
||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
private:
|
||||
|
||||
// internal use
|
||||
|
@ -210,7 +210,7 @@ public:
|
|||
{
|
||||
return _Tile;
|
||||
}
|
||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
private:
|
||||
sint32 _Tile;
|
||||
|
@ -236,7 +236,7 @@ public:
|
|||
void doubleSize ();
|
||||
bool operator== (const CTileBorder& border) const;
|
||||
void operator= (const CTileBorder& border);
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
bool isSet() const
|
||||
{
|
||||
return _Set;
|
||||
|
@ -416,7 +416,7 @@ public:
|
|||
{
|
||||
return _ChildName.find(name)!=_ChildName.end();
|
||||
}
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
private:
|
||||
static TFlagBorder getComplementaryBorder (TFlagBorder border);
|
||||
|
||||
|
@ -629,7 +629,7 @@ public:
|
|||
/// Postfix tile vegetable desc
|
||||
void postfixTileVegetableDesc (const char *filename);
|
||||
|
||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
private:
|
||||
sint createTile ();
|
||||
void freeTile (int tileIndex);
|
||||
|
|
|
@ -94,7 +94,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serial this tile
|
||||
void serial (class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial (NLMISC::IStream &f);
|
||||
|
||||
private:
|
||||
/// RGBA Pixels vector
|
||||
|
@ -141,7 +141,7 @@ public:
|
|||
}
|
||||
|
||||
/// Serial this bank
|
||||
void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/// The far tile vector
|
||||
std::vector<CTileFar> _TileVector;
|
||||
|
|
|
@ -168,7 +168,7 @@ public:
|
|||
sint64 Date;
|
||||
|
||||
/// serial the pools data's
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/// Set this pool name.
|
||||
void setName(const std::string &name) { _Name = name; }
|
||||
|
|
|
@ -97,7 +97,7 @@ public:
|
|||
|
||||
|
||||
/// serial the pools data's
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
private:
|
||||
friend class CWaterShape;
|
||||
|
|
|
@ -108,7 +108,7 @@ public:
|
|||
|
||||
|
||||
/// serial this shape
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
|
||||
|
||||
|
@ -299,7 +299,7 @@ public:
|
|||
|
||||
|
||||
/// serial this shape
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
//@}
|
||||
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
@ -160,7 +160,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
@ -239,7 +239,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
|
@ -323,7 +323,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
|
|
@ -79,7 +79,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node, const char *subName = "") const;
|
||||
void read (xmlNodePtr node, const char *subName = "");
|
||||
|
@ -122,7 +122,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
@ -181,7 +181,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(class NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
|
|
@ -149,7 +149,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
void write (xmlNodePtr node) const;
|
||||
void read (xmlNodePtr node);
|
||||
|
|
|
@ -182,7 +182,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial( NLMISC::IStream &f ) throw(NLMISC::EStream);
|
||||
//void serial( NLMISC::IStream &f );
|
||||
|
||||
/**
|
||||
* Display the variables
|
||||
|
|
|
@ -104,7 +104,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//virtual void serial(NLMISC::IStream &f);
|
||||
|
||||
virtual void write (xmlNodePtr node) const;
|
||||
virtual void read (xmlNodePtr node);
|
||||
|
@ -186,7 +186,7 @@ public:
|
|||
/**
|
||||
* serial
|
||||
*/
|
||||
//void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
//void serial(NLMISC::IStream &f);
|
||||
|
||||
virtual void write (xmlNodePtr node) const;
|
||||
virtual void read (xmlNodePtr node);
|
||||
|
|
|
@ -132,7 +132,7 @@ public:
|
|||
// See which parts of array will be discarded if the array is displaced by the given offset
|
||||
void getDiscardRects(sint moveOffsetX, sint moveOffsetY, std::vector<NLMISC::CRect> &discardedRects);
|
||||
//
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
private:
|
||||
TArrayContainer _Array;
|
||||
uint _Width;
|
||||
|
@ -157,7 +157,7 @@ void CArray2D<T>::clear()
|
|||
|
||||
//*********************************************************************************
|
||||
template <class T>
|
||||
void CArray2D<T>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CArray2D<T>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialCont(_Array);
|
||||
uint32 width = _Width;
|
||||
|
|
|
@ -66,7 +66,7 @@ public:
|
|||
float computeArea() const;
|
||||
|
||||
/// Serial this polygon
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/**
|
||||
* Convert a concave polygon into a list of convex polygons using a 2d projection.
|
||||
|
@ -156,7 +156,7 @@ public:
|
|||
void getBestTriplet(uint &index0, uint &index1, uint &index2);
|
||||
|
||||
/// Serial this polygon
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
typedef std::pair<sint, sint> TRaster;
|
||||
typedef std::vector<TRaster> TRasterVect;
|
||||
|
|
|
@ -86,7 +86,7 @@ public:
|
|||
* Serialisation.
|
||||
* \param f Stream used for serialisation.
|
||||
*/
|
||||
void serial (class NLMISC::IStream &f);
|
||||
void serial (NLMISC::IStream &f);
|
||||
|
||||
/**
|
||||
* Blend two colors.
|
||||
|
@ -451,7 +451,7 @@ public:
|
|||
* Serialisation.
|
||||
* \param f Stream used for serialisation.
|
||||
*/
|
||||
void serial(class NLMISC::IStream &f);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/**
|
||||
* Blend two colors.
|
||||
|
@ -676,7 +676,7 @@ public:
|
|||
* Serialisation.
|
||||
* \param f Stream used for serialisation.
|
||||
*/
|
||||
void serial(class NLMISC::IStream &f);
|
||||
void serial(NLMISC::IStream &f);
|
||||
|
||||
/**
|
||||
* Set colors.
|
||||
|
|
|
@ -146,8 +146,8 @@ public :
|
|||
/**
|
||||
* Serial
|
||||
*/
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
void serialString(NLMISC::IStream &f, const std::string &defaultType = "") throw(NLMISC::EStream);
|
||||
void serial(NLMISC::IStream &f);
|
||||
void serialString(NLMISC::IStream &f, const std::string &defaultType = "");
|
||||
|
||||
/**
|
||||
* Display the list of valid sheet ids with their associated file names
|
||||
|
|
|
@ -63,7 +63,7 @@ CFlareShape::CFlareShape() : _Color(NLMISC::CRGBA::White),
|
|||
|
||||
|
||||
// ***************************************************************************************************************
|
||||
void CFlareShape::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CFlareShape::serial(NLMISC::IStream &f)
|
||||
{
|
||||
// Version 4 : - added occlusion test mesh, size reduction, angle modification when object is occluded
|
||||
// - added lookat mode for first flare
|
||||
|
|
|
@ -139,7 +139,7 @@ public:
|
|||
}
|
||||
|
||||
// Dummy serial...
|
||||
virtual void serial(NLMISC::IStream &/* f */) throw(NLMISC::EStream) {nlstop;}
|
||||
virtual void serial(NLMISC::IStream &/* f */) { nlstop; }
|
||||
NLMISC_DECLARE_CLASS(CTextureCross);
|
||||
};
|
||||
|
||||
|
|
|
@ -861,7 +861,7 @@ void CMeshGeom::renderSimpleWithMaterial(IDriver *drv, const CMatrix &worldMatri
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshGeom::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
@ -2389,7 +2389,7 @@ CMesh::CCorner::CCorner()
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMesh::CCorner::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMesh::CCorner::serial(NLMISC::IStream &f)
|
||||
{
|
||||
nlassert(0); // not used
|
||||
f.serial(Vertex);
|
||||
|
@ -2400,7 +2400,7 @@ void CMesh::CCorner::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
}
|
||||
|
||||
// ***************************************************************************
|
||||
void CMesh::CFace::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMesh::CFace::serial(NLMISC::IStream &f)
|
||||
{
|
||||
for(int i=0;i<3;++i)
|
||||
f.serial(Corner[i]);
|
||||
|
@ -2409,7 +2409,7 @@ void CMesh::CFace::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
}
|
||||
|
||||
// ***************************************************************************
|
||||
void CMesh::CSkinWeight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMesh::CSkinWeight::serial(NLMISC::IStream &f)
|
||||
{
|
||||
for(int i=0;i<NL3D_MESH_SKINNING_MAX_MATRIX;++i)
|
||||
{
|
||||
|
@ -2420,7 +2420,7 @@ void CMesh::CSkinWeight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
|
||||
// ***************************************************************************
|
||||
/* Serialization is not used.
|
||||
void CMesh::CMeshBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMesh::CMeshBuild::serial(NLMISC::IStream &f)
|
||||
{
|
||||
sint ver= f.serialVersion(0);
|
||||
|
||||
|
@ -2604,7 +2604,7 @@ void CMesh::render(IDriver *drv, CTransformShape *trans, bool passOpaque)
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMesh::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMesh::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
|
|
@ -139,7 +139,7 @@ CMeshBase::CMeshBaseBuild::CMeshBaseBuild()
|
|||
|
||||
// ***************************************************************************
|
||||
#if 0
|
||||
void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/*
|
||||
Version 1:
|
||||
|
@ -164,7 +164,7 @@ void CMeshBase::CMeshBaseBuild::serial(NLMISC::IStream &f) throw(NLMISC::EStream
|
|||
#endif
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshBase::serialMeshBase(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshBase::serialMeshBase(NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace NL3D
|
|||
{
|
||||
|
||||
// ***************************************************************************
|
||||
void CBlendShape::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CBlendShape::serial (NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
@ -345,7 +345,7 @@ void CMeshMorpher::updateSkinned (std::vector<CAnimatedMorph> *pBSFactor)
|
|||
}
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshMorpher::serial (NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMorpher::serial (NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
|
|
@ -1604,7 +1604,7 @@ void CMeshMRMGeom::updateShiftedTriangleCache(CMeshMRMInstance *mi, sint curLodI
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshMRMGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMRMGeom::serial(NLMISC::IStream &f)
|
||||
{
|
||||
// because of complexity, serial is separated in save / load.
|
||||
|
||||
|
@ -1618,7 +1618,7 @@ void CMeshMRMGeom::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f)
|
||||
{
|
||||
/*
|
||||
Version 5:
|
||||
|
@ -1748,7 +1748,7 @@ sint CMeshMRMGeom::loadHeader(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshMRMGeom::load(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMRMGeom::load(NLMISC::IStream &f)
|
||||
{
|
||||
// Load the header of the stream.
|
||||
// ==================
|
||||
|
@ -1778,7 +1778,7 @@ void CMeshMRMGeom::load(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshMRMGeom::save(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMRMGeom::save(NLMISC::IStream &f)
|
||||
{
|
||||
/*
|
||||
Version 5:
|
||||
|
@ -2968,7 +2968,7 @@ void CMeshMRM::render(IDriver *drv, CTransformShape *trans, bool passOpaque)
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshMRM::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMRM::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/*
|
||||
Version 0:
|
||||
|
|
|
@ -288,7 +288,7 @@ void CMeshMultiLod::render(IDriver *drv, CTransformShape *trans, bool passOpaque
|
|||
|
||||
// ***************************************************************************
|
||||
|
||||
void CMeshMultiLod::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMultiLod::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
@ -405,7 +405,7 @@ void CMeshMultiLod::clear ()
|
|||
|
||||
// ***************************************************************************
|
||||
|
||||
void CMeshMultiLod::CMeshSlot::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshMultiLod::CMeshSlot::serial(NLMISC::IStream &f)
|
||||
{
|
||||
// Check version
|
||||
(void)f.serialVersion (0);
|
||||
|
|
|
@ -573,7 +573,7 @@ void CMeshVPPerPixelLight::end(IDriver *drv)
|
|||
|
||||
|
||||
//=================================================================================
|
||||
void CMeshVPPerPixelLight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshVPPerPixelLight::serial(NLMISC::IStream &f)
|
||||
{
|
||||
(void)f.serialVersion(0);
|
||||
f.serial(SpecularLighting);
|
||||
|
|
|
@ -194,7 +194,7 @@ CMeshVPWindTree::~CMeshVPWindTree()
|
|||
|
||||
|
||||
// ***************************************************************************
|
||||
void CMeshVPWindTree::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CMeshVPWindTree::serial(NLMISC::IStream &f)
|
||||
{
|
||||
(void)f.serialVersion(0);
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ void CPackedWorld::getZones(std::vector<TPackedZoneBaseSPtr> &zones)
|
|||
}
|
||||
|
||||
// *************************************************************************************************
|
||||
void CPackedWorld::serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPackedWorld::serialZoneNames(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serialCheck(NELID("OWPA"));
|
||||
|
@ -161,7 +161,7 @@ void CPackedWorld::serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
}
|
||||
|
||||
// *************************************************************************************************
|
||||
void CPackedWorld::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPackedWorld::serial(NLMISC::IStream &f)
|
||||
{
|
||||
serialZoneNames(f);
|
||||
f.serialCont(_Zones);
|
||||
|
|
|
@ -752,7 +752,7 @@ void CParticleSystem::step(TPass pass, TAnimationTime ellapsedTime, CParticleSys
|
|||
|
||||
|
||||
///=======================================================================================
|
||||
void CParticleSystem::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CParticleSystem::serial(NLMISC::IStream &f)
|
||||
{
|
||||
CHECK_INTEGRITY
|
||||
NL_PS_FUNC_MAIN(CParticleSystem_serial)
|
||||
|
|
|
@ -129,7 +129,7 @@ const CFontManager *CParticleSystemProcess::getFontManager(void) const
|
|||
|
||||
|
||||
// ***********************************************************************************************************
|
||||
void CParticleSystemProcess::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CParticleSystemProcess::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CParticleSystemProcess_serial)
|
||||
// version 2 : added matrix mode (just not fx world matrix or identity)
|
||||
|
|
|
@ -117,7 +117,7 @@ CParticleSystemShape::CParticleSystemShape() : _MaxViewDist(100.f),
|
|||
}
|
||||
|
||||
///===========================================================================
|
||||
void CParticleSystemShape::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CParticleSystemShape::serial(NLMISC::IStream &f)
|
||||
{
|
||||
/* ***********************************************
|
||||
* WARNING: This Class/Method must be thread-safe (ctor/dtor/serial): no static access for instance
|
||||
|
|
|
@ -26,7 +26,7 @@ namespace NL3D
|
|||
|
||||
|
||||
// ***********************************************************************************
|
||||
void CPSAttribMakerMemory<uint32>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSAttribMakerMemory<uint32>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
CPSAttribMakerMemoryBase<uint32>::serial(f);
|
||||
if (f.isReading())
|
||||
|
@ -59,7 +59,7 @@ void CPSAttribMakerMemory<uint32>::newElement(const CPSEmitterInfo &info)
|
|||
}
|
||||
|
||||
// ***********************************************************************************
|
||||
void CPSAttribMakerMemory<sint32>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSAttribMakerMemory<sint32>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
CPSAttribMakerMemoryBase<sint32>::serial(f);
|
||||
if (f.isReading())
|
||||
|
@ -92,7 +92,7 @@ void CPSAttribMakerMemory<sint32>::newElement(const CPSEmitterInfo &info)
|
|||
}
|
||||
|
||||
// ***********************************************************************************
|
||||
void CPSAttribMakerMemory<float>::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSAttribMakerMemory<float>::serial(NLMISC::IStream &f)
|
||||
{
|
||||
CPSAttribMakerMemoryBase<float>::serial(f);
|
||||
if (f.isReading())
|
||||
|
|
|
@ -76,7 +76,7 @@ NLMISC::CRGBA CPSColorMemory::getDefaultValue(void) const
|
|||
}
|
||||
|
||||
///======================================================================================
|
||||
void CPSColorMemory::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSColorMemory::serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSAttribMakerMemory<NLMISC::CRGBA>::serial(f);
|
||||
|
@ -90,7 +90,7 @@ void CPSColorBinOp::setColorType(CVertexBuffer::TVertexColorType colorType)
|
|||
}
|
||||
|
||||
///======================================================================================
|
||||
void CPSColorBinOp::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSColorBinOp::serial(NLMISC::IStream &f)
|
||||
{
|
||||
setColorType(CVertexBuffer::TRGBA);
|
||||
CPSAttribMakerBinOp<NLMISC::CRGBA>::serial(f);
|
||||
|
|
|
@ -290,7 +290,7 @@ void CPSDot::resize(uint32 size)
|
|||
}
|
||||
|
||||
///===================================================================
|
||||
void CPSDot::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSDot::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSDot_IStream )
|
||||
|
||||
|
|
|
@ -1917,7 +1917,7 @@ void CPSEmitter::bounceOccurred(uint32 index, TAnimationTime timeToNextSimStep)
|
|||
}
|
||||
|
||||
///==========================================================================
|
||||
void CPSEmitter::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSEmitter::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSEmitter_serial)
|
||||
/// version 6 : the flag _EmitDirBasis no longer exist, it has been replaced by _UserMatrixModeForEmissionDirection
|
||||
|
@ -2184,7 +2184,7 @@ bool CPSEmitter::testEmitForever() const
|
|||
// implementation of CPSModulatedEmitter //
|
||||
////////////////////////////////////////////
|
||||
|
||||
void CPSModulatedEmitter::serialEmitteeSpeedScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSModulatedEmitter::serialEmitteeSpeedScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSModulatedEmitter_IStream )
|
||||
bool useScheme;
|
||||
|
@ -2228,7 +2228,7 @@ void CPSEmitterOmni::emit(const NLMISC::CVector &srcPos, uint32 index, CVector &
|
|||
}
|
||||
|
||||
///==========================================================================
|
||||
void CPSEmitterOmni::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSEmitterOmni::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSEmitterOmni_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -2332,7 +2332,7 @@ void CPSEmitterDirectionnal::resize(uint32 capacity)
|
|||
}
|
||||
|
||||
///==========================================================================
|
||||
void CPSEmitterDirectionnal::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSEmitterDirectionnal::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSEmitterDirectionnal_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -2346,7 +2346,7 @@ void CPSEmitterDirectionnal::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
|||
////////////////////////////////////////////
|
||||
|
||||
///==========================================================================
|
||||
void CPSEmitterRectangle::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSEmitterRectangle::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSEmitterRectangle_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -2506,7 +2506,7 @@ void CPSEmitterRectangle::showTool(void)
|
|||
////////////////////////////////////
|
||||
|
||||
///==========================================================================
|
||||
void CPSEmitterConic::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSEmitterConic::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSEmitterConic_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -2611,7 +2611,7 @@ CMatrix CPSSphericalEmitter::getMatrix(uint32 index) const
|
|||
}
|
||||
|
||||
///==========================================================================
|
||||
void CPSSphericalEmitter::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSSphericalEmitter::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSSphericalEmitter_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -2668,7 +2668,7 @@ void CPSSphericalEmitter::resize(uint32 size)
|
|||
/////////////////////////////////////
|
||||
|
||||
///==========================================================================
|
||||
void CPSRadialEmitter::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSRadialEmitter::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSRadialEmitter_serial)
|
||||
f.serialVersion(1);
|
||||
|
|
|
@ -293,7 +293,7 @@ void CPSFace::step(TPSProcessPass pass)
|
|||
|
||||
|
||||
///======================================================================================
|
||||
void CPSFace::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSFace::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSFace_IStream )
|
||||
f.serialVersion(1);
|
||||
|
|
|
@ -996,7 +996,7 @@ void CPSFaceLookAt::resize(uint32 capacity)
|
|||
|
||||
|
||||
///===========================================================================================
|
||||
void CPSFaceLookAt::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSFaceLookAt::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSFaceLookAt_serial)
|
||||
// version 4 : added 'align on z-axis' flag
|
||||
|
|
|
@ -393,7 +393,7 @@ void CPSFanLight::draw(bool opaque)
|
|||
}
|
||||
|
||||
///====================================================================================
|
||||
void CPSFanLight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSFanLight::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSFanLight_serial)
|
||||
sint ver = f.serialVersion(2);
|
||||
|
|
|
@ -151,7 +151,7 @@ void CPSFloatCurveFunctor::updateTab(void)
|
|||
}
|
||||
|
||||
///=======================================================================================
|
||||
void CPSFloatCurveFunctor::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSFloatCurveFunctor::serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_NumSamples, _Smoothing);
|
||||
|
|
|
@ -45,7 +45,7 @@ CPSForce::CPSForce()
|
|||
|
||||
|
||||
|
||||
void CPSForce::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSForce::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSForce_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -189,7 +189,7 @@ void CPSForceIntensity::setIntensityScheme(CPSAttribMaker<float> *scheme)
|
|||
if (getForceIntensityOwner() && scheme->hasMemory()) scheme->resize(getForceIntensityOwner()->getMaxSize(), getForceIntensityOwner()->getSize());
|
||||
}
|
||||
|
||||
void CPSForceIntensity::serialForceIntensity(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSForceIntensity::serialForceIntensity(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSForceIntensity_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -229,7 +229,7 @@ void CPSForceIntensity::serialForceIntensity(NLMISC::IStream &f) throw(NLMISC::E
|
|||
////////////////////////////////////////
|
||||
|
||||
|
||||
void CPSForceIntensityHelper::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSForceIntensityHelper::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSForceIntensityHelper_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -320,7 +320,7 @@ void CPSDirectionnalForce::show()
|
|||
}
|
||||
}
|
||||
|
||||
void CPSDirectionnalForce::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSDirectionnalForce::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSDirectionnalForce_serial)
|
||||
// Version 2 : added link to a global vector value
|
||||
|
@ -488,7 +488,7 @@ void CPSGravity::show()
|
|||
|
||||
}
|
||||
|
||||
void CPSGravity::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSGravity::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSGravity_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -747,7 +747,7 @@ void CPSCentralGravity::show()
|
|||
displayIcon2d(tab, tabSize, sSize);
|
||||
}
|
||||
|
||||
void CPSCentralGravity::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSCentralGravity::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSCentralGravity_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -785,7 +785,7 @@ void CPSSpring::computeForces(CPSLocated &target)
|
|||
}
|
||||
|
||||
|
||||
void CPSSpring::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSSpring::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSSpring_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -921,7 +921,7 @@ CMatrix CPSCylindricVortex::getMatrix(uint32 index) const
|
|||
}
|
||||
|
||||
|
||||
void CPSCylindricVortex::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSCylindricVortex::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSCylindricVortex_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -960,7 +960,7 @@ void CPSCylindricVortex::resize(uint32 size)
|
|||
* a magnetic field that has the given direction
|
||||
*/
|
||||
|
||||
void CPSMagneticForce::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSMagneticForce::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSMagneticForce_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -1369,7 +1369,7 @@ void CPSBrownianForce::computeForces(CPSLocated &target)
|
|||
}
|
||||
|
||||
///=======================================================================
|
||||
void CPSBrownianForce::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSBrownianForce::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSBrownianForce_serial)
|
||||
sint ver = f.serialVersion(3);
|
||||
|
|
|
@ -72,7 +72,7 @@ CPSLight::~CPSLight()
|
|||
}
|
||||
|
||||
// ***************************************************************************************************************
|
||||
void CPSLight::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSLight::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSLight_serial)
|
||||
CPSLocatedBindable::serial(f);
|
||||
|
|
|
@ -1411,7 +1411,7 @@ void CPSLocated::resize(uint32 newSize)
|
|||
class CDummyCollision
|
||||
{
|
||||
public:
|
||||
void serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CDummyCollision_serial)
|
||||
f.serialVersion(1);
|
||||
|
@ -1422,7 +1422,7 @@ public:
|
|||
};
|
||||
|
||||
/// ***************************************************************************************
|
||||
void CPSLocated::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSLocated::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSLocated_serial)
|
||||
|
||||
|
@ -2710,7 +2710,7 @@ void CPSLocatedBindable::notifyTargetRemoved(CPSLocated *ptr)
|
|||
}
|
||||
|
||||
/// ***************************************************************************************
|
||||
void CPSLocatedBindable::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSLocatedBindable::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSLocatedBindable_IStream )
|
||||
sint ver = f.serialVersion(4);
|
||||
|
@ -2902,7 +2902,7 @@ void CPSLocatedBindable::releaseAllRef()
|
|||
/////////////////////////////////////////////
|
||||
|
||||
/// ***************************************************************************************
|
||||
void CPSTargetLocatedBindable::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSTargetLocatedBindable::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSTargetLocatedBindable_serial)
|
||||
(void)f.serialVersion(1);
|
||||
|
|
|
@ -158,7 +158,7 @@ static CMesh *CreateDummyMesh(void)
|
|||
|
||||
|
||||
//====================================================================================
|
||||
void CPSMesh::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSMesh::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSMesh_IStream )
|
||||
(void)f.serialVersion(3);
|
||||
|
@ -1448,7 +1448,7 @@ void CPSConstraintMesh::fillIndexesInPrecompBasis(void)
|
|||
|
||||
//====================================================================================
|
||||
/// serialisation. Derivers must override this, and call their parent version
|
||||
void CPSConstraintMesh::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSConstraintMesh::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSConstraintMesh_IStream )
|
||||
|
||||
|
@ -2267,7 +2267,7 @@ CPSConstraintMesh::CGlobalTexAnim::CGlobalTexAnim() : TransOffset(NLMISC::CVecto
|
|||
}
|
||||
|
||||
//=====================================================================================
|
||||
void CPSConstraintMesh::CGlobalTexAnim::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSConstraintMesh::CGlobalTexAnim::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CGlobalTexAnim_IStream )
|
||||
// version 1 : added offset
|
||||
|
@ -2365,7 +2365,7 @@ void CPSConstraintMesh::setTexAnimType(TTexAnimType type)
|
|||
}
|
||||
|
||||
//=====================================================================================
|
||||
void CPSConstraintMesh::CGlobalTexAnims::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSConstraintMesh::CGlobalTexAnims::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CGlobalTexAnims_IStream )
|
||||
f.serialVersion(0);
|
||||
|
|
|
@ -152,7 +152,7 @@ CPSColoredParticle::~CPSColoredParticle()
|
|||
}
|
||||
|
||||
//=======================================
|
||||
void CPSColoredParticle::serialColorScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSColoredParticle::serialColorScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSColoredParticle_IStream )
|
||||
f.serialVersion(1);
|
||||
|
@ -213,7 +213,7 @@ CPSSizedParticle::~CPSSizedParticle()
|
|||
}
|
||||
|
||||
//=======================================
|
||||
void CPSSizedParticle::serialSizeScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSSizedParticle::serialSizeScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSSizedParticle_serialSizeScheme)
|
||||
f.serialVersion(1);
|
||||
|
@ -277,7 +277,7 @@ CPSRotated2DParticle::~CPSRotated2DParticle()
|
|||
}
|
||||
|
||||
///===================================================================================
|
||||
void CPSRotated2DParticle::serialAngle2DScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSRotated2DParticle::serialAngle2DScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSRotated2DParticle_serialAngle2DScheme)
|
||||
f.serialVersion(1);
|
||||
|
@ -387,7 +387,7 @@ CPSTexturedParticle::~CPSTexturedParticle()
|
|||
}
|
||||
|
||||
///===================================================================================
|
||||
void CPSTexturedParticle::serialTextureScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSTexturedParticle::serialTextureScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSTexturedParticle_serialTextureScheme)
|
||||
f.serialVersion(1);
|
||||
|
@ -489,7 +489,7 @@ CPSRotated3DPlaneParticle::~CPSRotated3DPlaneParticle()
|
|||
}
|
||||
|
||||
///===================================================================================
|
||||
void CPSRotated3DPlaneParticle::serialPlaneBasisScheme(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSRotated3DPlaneParticle::serialPlaneBasisScheme(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSRotated3DPlaneParticle_serialPlaneBasisScheme)
|
||||
f.serialVersion(1);
|
||||
|
@ -515,7 +515,7 @@ CPSMaterial::CPSMaterial()
|
|||
}
|
||||
|
||||
///===================================================================================
|
||||
void CPSMaterial::serialMaterial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSMaterial::serialMaterial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSMaterial_IStream )
|
||||
// version 3 : added zbias
|
||||
|
@ -726,7 +726,7 @@ void CPSMultiTexturedParticle::enableAlternateTex(bool enabled /*= true*/)
|
|||
}
|
||||
|
||||
//=======================================
|
||||
void CPSMultiTexturedParticle::serialMultiTex(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSMultiTexturedParticle::serialMultiTex(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSMultiTexturedParticle_serialMultiTex)
|
||||
/// version 1 : bump factor
|
||||
|
|
|
@ -320,7 +320,7 @@ uint32 CSpinnerFunctor::getNumSamples(void) const
|
|||
}
|
||||
|
||||
///============================================================================
|
||||
void CSpinnerFunctor::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CSpinnerFunctor::serial(NLMISC::IStream &f)
|
||||
{
|
||||
f.serialVersion(1);
|
||||
f.serial(_Axis, _NbSamples);
|
||||
|
|
|
@ -382,7 +382,7 @@ void CPSQuad::updateMatAndVbForColor(void)
|
|||
}
|
||||
|
||||
//==============================================================
|
||||
void CPSQuad::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSQuad::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSQuad_serial)
|
||||
sint ver = f.serialVersion(2);
|
||||
|
|
|
@ -136,7 +136,7 @@ struct CDummy2DAngle : CPSRotated2DParticle
|
|||
};
|
||||
|
||||
///==================================================================================================================
|
||||
void CPSRibbon::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||
void CPSRibbon::serial(NLMISC::IStream &f)
|
||||
{
|
||||
NL_PS_FUNC(CPSRibbon_serial)
|
||||
// Version 3 : - added brace mode
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue