pie_graph.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pie_graph.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:49:32  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: pie_graph.cpp,v 1000.1 2004/06/01 20:49:32 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software / database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software / database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/graph/pie_graph.hpp>
  41. #include <math.h>
  42. BEGIN_NCBI_SCOPE
  43. CPieGraph::CPieGraph()
  44. {
  45.     SetColor(CGlColor(0.0f, 0.0f, 0.0f));
  46. }
  47. bool    CPieGraph::SetDataSource(IGraphDataSource* pDS)
  48. {
  49.     IPieDataSource* pPieDS = dynamic_cast<IPieDataSource*>(pDS);
  50.     bool bOk =  pPieDS!= NULL;
  51.     CGraphBase::SetDataSource(bOk ? pDS : NULL);
  52.     CalculateLimits();
  53.     return bOk;
  54. }
  55. void    CPieGraph::Render(CGlPane* pPane)
  56. {
  57.     _ASSERT(pPane);
  58.     IPieDataSource* pSource = GetPieDataSource();
  59.     if (pPane  &&  pSource) {
  60.         pPane->OpenOrtho();
  61.         try {
  62.             INumericArray*  pValues = pSource->GetValueArray();
  63.             IColorArray*    pColors = pSource->GetColorArray();
  64.     //IStringArray*   pLabels = pSource->GetLabelsArray();
  65.             
  66.             int N = pValues->GetSize();
  67.             double Sum = 0.0;
  68.             for (int i =0;  i<N;  i++ ) {
  69.                 Sum += ::fabs(pValues->GetElem(i));
  70.             }
  71.             // choose number of segments
  72.             double D = 0.5 *(pPane->GetViewport().Width() + pPane->GetViewport().Height());
  73.             double MinD = min(pPane->GetViewport().Width(), pPane->GetViewport().Height());
  74.             double SegL = sqrt(MinD); //pixels
  75.             double NSegmPerDegree = 3.14 * D / (SegL * 360);
  76.             double kA = 360.0 / Sum; 
  77.             double aStart = 0.0;
  78.             glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
  79.             GLUquadricObj *pQObj = gluNewQuadric();
  80.             for (int i =0;  i<N;  i++ ) {
  81.                 double V = ::fabs(pValues->GetElem(i));
  82.                 double aSweep = V * kA;
  83.                 int Slices = 1 + (int) ceil(aSweep * NSegmPerDegree);
  84.                 // drawing sector
  85.                 glColorC(pColors->GetElem(i));
  86.                 gluQuadricDrawStyle(pQObj, GLU_FILL);
  87.                 gluPartialDisk(pQObj, 0, 1, Slices, 1, aStart, aSweep);
  88.                 //drawing perimeter
  89.                 glColorC(m_Color);
  90.                 gluQuadricDrawStyle(pQObj, GLU_SILHOUETTE);
  91.                 gluPartialDisk(pQObj, 0, 1, Slices, 1, aStart, aSweep);                
  92.                 aStart += aSweep;                
  93.             }
  94.             gluDeleteQuadric(pQObj);
  95.         }
  96.         catch(...) {
  97.             //need to trace it
  98.         }
  99.         pPane->Close();
  100.     }
  101. }
  102. void    CPieGraph::CalculateLimits()
  103. {
  104.     m_Limits.Init(-1.0, -1.0, 1.0, 1.0);
  105. }
  106. bool    CPieGraph::ShowMarkers()
  107. {
  108.     return false;
  109. }
  110. IStringArray*   CPieGraph::GetLabelArray()
  111. {
  112.     IPieDataSource* pDS = GetPieDataSource();
  113.     return pDS ? pDS->GetLabelsArray() : NULL;
  114. }
  115. IColorArray*    CPieGraph::GetColorArray()
  116. {
  117.     IPieDataSource* pDS = GetPieDataSource();
  118.     return pDS ? pDS->GetColorArray() : NULL;
  119. }
  120. INumericArray*  CPieGraph::GetMarkerArray()
  121. {
  122.     return NULL;
  123. }
  124. /////////////////////////////////////////////////////////////////////////////
  125. /// CPieDataSource
  126. CPieDataSource::CPieDataSource(int SectorsN, const string& Name)
  127.     : CSeriesBase(SectorsN),
  128. m_Name(Name)
  129. {
  130. }
  131. void    CPieDataSource::CreateArrays()
  132. {
  133.     CSeriesBase::CreateArrays();
  134.     TValueAdapter* pValAd = new TValueAdapter(m_Length);
  135.     AddArray(static_cast<IDataArray*>(pValAd));
  136.     TColorAdapter* pCAd = new TColorAdapter(m_Length);
  137.     AddArray(static_cast<IDataArray*>(pCAd));    
  138.     TStringAdapter* pLabAd = new TStringAdapter(m_Length);
  139.     AddArray(static_cast<IDataArray*>(pLabAd));    
  140. }
  141. END_NCBI_SCOPE
  142. /*
  143.  * ===========================================================================
  144.  * $Log: pie_graph.cpp,v $
  145.  * Revision 1000.1  2004/06/01 20:49:32  gouriano
  146.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  147.  *
  148.  * Revision 1.5  2004/05/21 22:27:42  gorelenk
  149.  * Added PCH ncbi_pch.hpp
  150.  *
  151.  * Revision 1.4  2003/08/11 16:10:57  yazhuk
  152.  * Compilation fixes for GCC
  153.  *
  154.  * Revision 1.3  2003/08/10 14:11:47  dicuccio
  155.  * Added makefiles for Unix projects; compilation fixes for gcc
  156.  *
  157.  * Revision 1.2  2003 / 08 / 08 15:59:36  yazhuk
  158.  * Comments added
  159.  *
  160.  * ===========================================================================
  161.  */