123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- //===========================================================================//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #pragma once
- #define MLR_MLR_I_DT_PMESH_HPP
- #if !defined(MLR_MLR_HPP)
- #include <MLR\MLR.hpp>
- #endif
- #if !defined(MLR_MLR_I_PMesh_HPP)
- #include <MLR\MLR_I_PMesh.hpp>
- #endif
- namespace MidLevelRenderer {
- //##########################################################################
- //#### MLRIndexedPolyMesh with no color no lighting two texture layer #####
- //##########################################################################
- class MLR_I_DT_PMesh:
- public MLR_I_PMesh
- {
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // Initialization
- //
- public:
- static void
- InitializeClass();
- static void
- TerminateClass();
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // Constructors/Destructors
- //
- protected:
- MLR_I_DT_PMesh(
- ClassData *class_data,
- Stuff::MemoryStream *stream,
- int version
- );
- ~MLR_I_DT_PMesh();
- public:
- MLR_I_DT_PMesh(ClassData *class_data=MLR_I_DT_PMesh::DefaultData);
- static MLR_I_DT_PMesh*
- Make(
- Stuff::MemoryStream *stream,
- int version
- );
- void
- Save(Stuff::MemoryStream *stream);
- public:
- // void Copy(MLRIndexedPolyMesh*);
- virtual int TransformAndClip(Stuff::Matrix4D *, MLRClippingState, GOSVertexPool*,bool=false);
- virtual void
- TransformNoClip(Stuff::Matrix4D*, GOSVertexPool*,bool=false);
- void
- SetTexCoordData(const Vector2DScalar*, int);
- virtual void
- SetReferenceState(const MLRState& _state, int pass=0)
- {
- Check_Object(this);
- Verify(pass>=0 && pass<2);
- if(pass==0)
- {
- referenceState = _state;
- }
- else
- {
- passes = 2;
- referenceState2 = _state;
- }
- }
- virtual const MLRState&
- GetReferenceState(int pass=0) const
- {
- Check_Object(this);
- if(pass==0)
- return referenceState;
- else
- return referenceState2;
- }
- virtual const MLRState&
- GetCurrentState(int pass=0) const
- {
- Check_Object(this);
- if(pass==0)
- return state;
- else
- return state2;
- }
- virtual void
- CombineStates (const MLRState& master)
- {
- Check_Object(this);
- state.Combine(master, referenceState);
- state2.Combine(master, referenceState2);
- };
- virtual GOSVertex*
- GetGOSVertices(int pass=0)
- {
- Check_Object(this);
- if(pass==0)
- return gos_vertices;
- else
- return gos_vertices+numGOSVertices;
- }
- #if 0
- virtual unsigned short*
- GetGOSIndices(int pass=0)
- {
- Check_Object(this);
- if(pass==0)
- return gos_indices;
- else
- return gos_indices2;
- }
- #endif
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // Class Data Support
- //
- public:
- static ClassData
- *DefaultData;
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // Testing
- //
- public:
- void
- TestInstance() const;
- virtual int
- GetSize()
- {
- Check_Object(this);
- int ret = MLR_I_PMesh::GetSize();
- return ret;
- }
- protected:
- MLRState state2, referenceState2;
- static Stuff::DynamicArrayOf<Vector2DScalar> *texCoords2; // Max_Number_Vertices_Per_Mesh
- static Stuff::DynamicArrayOf<Vector2DScalar> *clipExtraTexCoords2; // Max_Number_Vertices_Per_Mesh
- };
- MLR_I_DT_PMesh*
- CreateIndexedCube_NoColor_NoLit_2Tex(Stuff::Scalar, MLRState*, MLRState*);
- MLRShape*
- CreateIndexedIcosahedron_NoColor_NoLit_2Tex(
- IcoInfo&,
- MLRState*,
- MLRState*
- );
- }
|