// Created on: 2016-04-19
// Copyright (c) 2016 OPEN CASCADE SAS
// Created by: Oleg AGASHIN
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.

#ifndef _BRepMesh_EdgeTessellationExtractor_HeaderFile
#define _BRepMesh_EdgeTessellationExtractor_HeaderFile

#include <IMeshTools_CurveTessellator.hxx>
#include <IMeshData_Types.hxx>
#include <BRepMesh_EdgeParameterProvider.hxx>
#include <TColgp_Array1OfPnt.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <TopLoc_Location.hxx>

//! Auxiliary class implements functionality retrieving tessellated
//! representation of an edge stored in polygon.
class BRepMesh_EdgeTessellationExtractor : public IMeshTools_CurveTessellator
{
public:

  //! Constructor.
  Standard_EXPORT BRepMesh_EdgeTessellationExtractor (
    const IMeshData::IEdgeHandle& theEdge,
    const IMeshData::IFaceHandle& theFace);

  //! Destructor.
  Standard_EXPORT virtual ~BRepMesh_EdgeTessellationExtractor ();

  //! Returns number of tessellation points.
  Standard_EXPORT virtual Standard_Integer PointsNb () const Standard_OVERRIDE;

  //! Returns parameters of solution with the given index.
  //! @param theIndex index of tessellation point.
  //! @param theParameter parameters on PCurve corresponded to the solution.
  //! @param thePoint tessellation point.
  //! @return True in case of valid result, false elewhere.
  Standard_EXPORT virtual Standard_Boolean Value (
    const Standard_Integer theIndex,
    gp_Pnt&                thePoint,
    Standard_Real&         theParameter) const Standard_OVERRIDE;

  DEFINE_STANDARD_RTTIEXT(BRepMesh_EdgeTessellationExtractor, IMeshTools_CurveTessellator)

private:

  BRepMesh_EdgeParameterProvider<Handle(TColStd_HArray1OfReal)>  myProvider;
  const Poly_Triangulation*                                      myTriangulation;
  const TColStd_Array1OfInteger*                                 myIndices;
  TopLoc_Location                                                myLoc;
};

#endif
