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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gldlist.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:49:49  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OPENGL___GLDLIST__HPP
  10. #define GUI_OPENGL___GLDLIST__HPP
  11. /*  $Id: gldlist.hpp,v 1000.2 2004/06/01 19:49:49 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CGlDisplayList        - manager for a single display list
  40.  *    CGlDisplayListCompile - utility class to permit scoped creation of
  41.  *                            display lists.
  42.  */
  43. #include <corelib/ncbiobj.hpp>
  44. #include <gui/opengl.h>
  45. #include <gui/gui.hpp>
  46. /** @addtogroup GUI_OPENGL
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. /////////////////////////////////////////////////////////////////////////
  52. // CGlDisplayList::
  53. //   Wrapper for an OpenGL display list.  This class maintains (in addition)
  54. //   flags indicating whether the current display list should be re-created at
  55. //   the next attempt to render.
  56. class NCBI_GUIOPENGL_EXPORT CGlDisplayList : public CObject
  57. {
  58. public:
  59.     // Modes for creation
  60.     // These are straight from OpenGL - one simply remembers the commands, the
  61.     // other remebers the commands and performs their actions.
  62.     enum EMode {
  63.         eCompile            = GL_COMPILE,
  64.         eCompileAndExecute  = GL_COMPILE_AND_EXECUTE
  65.     };
  66.     // ctor/dtor
  67.     CGlDisplayList();
  68.     ~CGlDisplayList();
  69.     // Draw the display list
  70.     void Call() const;
  71.     // Begin/End compilation of the display list
  72.     void Begin(GLenum mode);
  73.     void End();
  74.     // Get/Set the current valid flag.  This can be used to mark a display list
  75.     // for re-creation in a drawing loop.
  76.     bool IsValid(void) const        { return m_IsValid; }
  77.     void Invalidate(void);
  78.     // this 
  79.     void Delete();
  80. private:
  81.     GLuint m_DList;
  82.     bool   m_IsValid;
  83.     // initialize our display list, if it isn't already
  84.     void x_Init();
  85.     // copying prohibited
  86.     CGlDisplayList(const CGlDisplayList&);
  87.     CGlDisplayList& operator= (const CGlDisplayList&);
  88. };
  89. inline
  90. void CGlDisplayList::Invalidate(void)
  91. {
  92.     // we simply mark invalid - we can't delete our display list until we have
  93.     // a valid GL context
  94.     m_IsValid = false;
  95. }
  96. /////////////////////////////////////////////////////////////////////////
  97. // CGlDisplayListCompile::
  98. //  This class mediates display list creation and compilation
  99. //  Creation and compilation can be accomplished via scoping a display list
  100. //  compiler:
  101. //
  102. //  void Draw()
  103. //  {
  104. //      if (m_DList.IsValid()) {
  105. //          m_DList.Call();
  106. //      } else {
  107. //          CGlDisplayListCompile COMPILE(m_DList,
  108. //                                        CGlDisplayList::eCompileAndExecute);
  109. //
  110. //          [...rendering commands...]
  111. //      }
  112. //  }
  113. class NCBI_GUIOPENGL_EXPORT CGlDisplayListCompile
  114. {
  115. public:
  116.     typedef CGlDisplayList::EMode EMode;
  117.     CGlDisplayListCompile(CGlDisplayList& dlist, GLenum mode = GL_COMPILE);
  118.     ~CGlDisplayListCompile();
  119. private:
  120.     CGlDisplayList& m_DList;
  121. };
  122. END_NCBI_SCOPE
  123. /* @} */
  124. /*
  125.  * ===========================================================================
  126.  * $Log: gldlist.hpp,v $
  127.  * Revision 1000.2  2004/06/01 19:49:49  gouriano
  128.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  129.  *
  130.  * Revision 1.9  2004/05/11 18:54:22  dicuccio
  131.  * Added doxygne modules info
  132.  *
  133.  * Revision 1.8  2004/05/03 12:43:59  dicuccio
  134.  * Added #include for gui/gui.hpp
  135.  *
  136.  * Revision 1.7  2004/02/17 15:15:19  yazhuk
  137.  * Added Delete()
  138.  *
  139.  * Revision 1.6  2003/08/22 15:55:11  dicuccio
  140.  * Inherit from CObject
  141.  *
  142.  * Revision 1.5  2003/06/09 19:16:54  dicuccio
  143.  * Changed ctor to take GLenum instead of internal enumerated type
  144.  *
  145.  * Revision 1.4  2003/01/13 13:11:42  dicuccio
  146.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  147.  * Moved all FLUID-generated code into namespace ncbi.
  148.  *
  149.  * Revision 1.3  2002/12/19 18:13:03  dicuccio
  150.  * Added export specifiers for Win32.
  151.  *
  152.  * Revision 1.2  2002/12/06 13:59:44  dicuccio
  153.  * Made Call() a const function.
  154.  *
  155.  * Revision 1.1  2002/11/22 18:06:42  dicuccio
  156.  * Initial revision.
  157.  *
  158.  * ===========================================================================
  159.  */
  160. #endif  // GUI_OPENGL___GLDLIST__HPP