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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cmdln_demo.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:49:44  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: cmdln_demo.cpp,v 1000.2 2004/06/01 20:49:44 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.  * Class CCmdLineGraphDemoApp is a command line demo application using 
  38.  * "gui_graph" library to render Chart graph and saving it in a file. 
  39.  */
  40.  
  41. #include <ncbi_pch.hpp>
  42. #include <gui/opengl.h>
  43. #include <corelib/ncbiapp.hpp>
  44. #include <corelib/ncbiargs.hpp>
  45. #include <util/image/image_io.hpp>
  46. #include <gui/opengl/mesa/glcgi_image.hpp>
  47. #include <gui/opengl/mesa/gloscontext.hpp>
  48. #include <gui/opengl/glcolortable.hpp>
  49. #include <util/image/image.hpp>
  50. #include <util/image/image_io.hpp>
  51. #include <gui/opengl/glpane.hpp>
  52. #include <gui/graph/combo_chart.hpp>
  53. #include <gui/graph/graph_panel.hpp>
  54. #include <gui/graph/legend.hpp>
  55. #include <math.h>
  56. #include <stdio.h>
  57. USING_NCBI_SCOPE;
  58. //
  59. // content-type headers for images
  60. //
  61. struct SContentType
  62. {
  63.     CImageIO::EType m_Type;
  64.     const char* m_Encoding;
  65. };
  66. static const SContentType kContentTypes[] = {
  67.     { CImageIO::eBmp,  "bmp" },
  68.     { CImageIO::eGif,  "gif" },
  69.     { CImageIO::eJpeg, "jpeg" },
  70.     { CImageIO::ePng,  "png" },
  71.     { CImageIO::eSgi,  "sgi" },
  72.     { CImageIO::eTiff, "tiff" },
  73.     { CImageIO::eXpm,  "xmp" },
  74.     // must be last
  75.     { CImageIO::eUnknown, NULL }
  76. };
  77. /////////////////////////////////////////////////////////////////////////////
  78. //  CCmdLineGraphDemoApp::
  79. class CCmdLineGraphDemoApp : public CNcbiApplication
  80. {
  81. public:
  82. CCmdLineGraphDemoApp();
  83. protected:
  84.     virtual void Init(void);
  85.     virtual int  Run(void);
  86.     virtual void Exit(void);
  87.     bool  GenerateImage();
  88. void Render();
  89. protected:
  90.     // dimensions of our virtual frame buffer
  91.     size_t m_Width;
  92.     size_t m_Height;
  93.     // the image format we will emit - default is PNG
  94.     CImageIO::EType m_Format;
  95.     // our off-screen renderer
  96.     CRef<CGlOsContext> m_Context;
  97. };
  98. /////////////////////////////////////////////////////////////////////////////
  99. // CCmdLineGraphDemoApp constructor
  100. CCmdLineGraphDemoApp::CCmdLineGraphDemoApp()
  101. : m_Width(640),
  102. m_Height(480),
  103. m_Format(CImageIO::eUnknown)
  104. {
  105. }
  106. /////////////////////////////////////////////////////////////////////////////
  107. //  Init test for all different types of arguments
  108. void CCmdLineGraphDemoApp::Init(void)
  109. {
  110.     // Create command-line argument descriptions class
  111.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  112.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  113.                               "CCmdLineGraphDemoApp demo program");
  114.     arg_desc->AddPositional
  115.         ("filename",
  116.          "Output file name",
  117.          CArgDescriptions::eOutputFile,
  118.  CArgDescriptions::fPreOpen | CArgDescriptions::fBinary);
  119.     arg_desc->AddOptionalPositional
  120.         ("fmt",
  121.          "Graphical format - one of the following: bmp, gif, jpeg, png, sgi, tiff, xmp",
  122.          CArgDescriptions::eString);
  123.     // Setup arg.descriptions for this application
  124.     SetupArgDescriptions(arg_desc.release());
  125. }
  126. /////////////////////////////////////////////////////////////////////////////
  127. //  Run test (printout arguments obtained from command-line)
  128. int CCmdLineGraphDemoApp::Run(void)
  129. {
  130.     // Get arguments
  131. CArgs args = GetArgs();
  132. string sFilename = args["filename"].AsString();
  133. if (args["fmt"]) {
  134. string sFormat = args["fmt"].AsString();
  135. for( int i = 0; ;i++ ) {
  136. const SContentType& Type = kContentTypes[i];
  137. if (Type.m_Encoding == NULL  ||  sFormat == Type.m_Encoding) {
  138. m_Format = Type.m_Type;
  139. break;
  140. }
  141. }
  142. if(m_Format == CImageIO::eUnknown) {
  143. cout << "Unknown graphical format: " << sFormat << endl;
  144. return 1;
  145. }
  146. } else m_Format = CImageIO::ePng;
  147. //select image format
  148. if (GenerateImage())
  149.         cout << "Done." << endl;
  150. CImageIO::WriteImage(m_Context->GetBuffer(), sFilename, m_Format);
  151. return 0;
  152. }
  153. /////////////////////////////////////////////////////////////////////////////
  154. // InitContext
  155. bool CCmdLineGraphDemoApp::GenerateImage()
  156. {
  157. // initalizing drawing context with specified Width and Height
  158. m_Context.Reset(new CGlOsContext(m_Width, m_Height));
  159. if (m_Context  &&  m_Context->MakeCurrent() ) {
  160. // call the rendering fucntion
  161. Render();
  162. // call glFinish() - VERY IMPORTANT FOR OFF_SCREEN RENDERING
  163. // this forces any buffered OpenGL requests to complete now.
  164. glFinish();
  165. // final image preparation
  166. // the image is upside-down because frame buffers are, in general,
  167. // upside-down.  Also, we have an alpha channel we need to flatten.
  168. m_Context->SetBuffer().SetDepth(3);
  169. m_Context->SetBuffer().Flip();
  170. return true;
  171. } else {
  172. LOG_POST(Error << "CCmdLineGraphDemoApp::GenerateImage(): "
  173. "Failed to initialized drawing context.");
  174. return false;
  175. }
  176. }
  177. void CCmdLineGraphDemoApp::Render()
  178. {
  179.     //Create graph
  180. int ElemsN = 20;
  181. int SeriesN = 4;
  182. CComboChartDataSource *pChartDS = new CComboChartDataSource(SeriesN, ElemsN);
  183. pChartDS->CreateArrays();
  184. // generating data for the Data Source
  185. for( int i = 0;  i< SeriesN;  i++ ) {
  186. CComboChartDataSource::TValueCont& Cont = pChartDS->GetValueContainer(i);
  187. char S[30];
  188. sprintf(S, "Series %d", i);
  189. pChartDS->GetLabelContainer()[i] = S; // graph name
  190. for( int j = 0; j < ElemsN; j++ ) {
  191.      Cont[j] = sin(i + (i/10 + 0.05)*j) + j * 0.01;
  192. }
  193. }
  194. CComboChart* pChart = new CComboChart();
  195. //pChart->SetStyle(CComboChart::eBarChart);  //optional style
  196. pChart->SetDataSource(pChartDS);
  197. pChart->AssignAutoMarkers();
  198. pChart->AssignAutoColors();
  199. // create and setup Graph Panel
  200. CGraphPanel Panel;
  201. Panel.Create();
  202. Panel.SetRect(TVPRect(0, 0, m_Width - 1, m_Height - 1));
  203. Panel.SetLayout(100, 25, 100, 45);
  204. Panel.AddGraph(static_cast<IGraph*>(pChart));
  205. Panel.GetLegend()->SetDataSource(static_cast<IGraphDataSource*>(pChart));
  206. Panel.GetGraphPane().ZoomAll();
  207. Panel.Render();
  208. delete pChartDS;
  209. delete pChart;
  210. }
  211. /////////////////////////////////////////////////////////////////////////////
  212. //  Cleanup
  213. void CCmdLineGraphDemoApp::Exit(void)
  214. {
  215.     SetDiagStream(0);
  216. }
  217. /////////////////////////////////////////////////////////////////////////////
  218. //  MAIN
  219. int main(int argc, const char* argv[])
  220. {
  221.     // Execute main application function
  222.     return CCmdLineGraphDemoApp().AppMain(argc, argv, 0, eDS_Default, 0);
  223. }
  224. /*
  225.  * ===========================================================================
  226.  * $Log: cmdln_demo.cpp,v $
  227.  * Revision 1000.2  2004/06/01 20:49:44  gouriano
  228.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  229.  *
  230.  * Revision 1.6  2004/05/21 22:27:43  gorelenk
  231.  * Added PCH ncbi_pch.hpp
  232.  *
  233.  * Revision 1.5  2004/03/16 17:16:18  yazhuk
  234.  * Updated include to glpane.hpp
  235.  *
  236.  * Revision 1.4  2003/12/10 21:32:30  ucko
  237.  * +<stdio.h> for sprintf()
  238.  *
  239.  * Revision 1.3  2003/08/15 17:38:46  ucko
  240.  * Fixed CVS keywords so they'll actually expand.
  241.  *
  242.  * ===========================================================================
  243.  */