]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/StateAttributeFactory.hxx
simgear/scene/sky/sky.cxx: Include sg_inlines.h with simgear/ prefix as all other...
[simgear.git] / simgear / scene / util / StateAttributeFactory.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2007 Tim Moore
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef SIMGEAR_STATEATTRIBUTEFACTORY_HXX
23 #define SIMGEAR_STATEATTRIBUTEFACTORY_HXX 1
24
25 #include <OpenThreads/Mutex>
26 #include <osg/ref_ptr>
27 #include <osg/Array>
28
29 namespace osg
30 {
31 class AlphaFunc;
32 class BlendFunc;
33 class CullFace;
34 class Depth;
35 class ShadeModel;
36 class Texture2D;
37 class TexEnv;
38 }
39
40 #include <simgear/structure/Singleton.hxx>
41
42 // Return read-only instances of common OSG state attributes.
43 namespace simgear
44 {
45 class StateAttributeFactory :
46         public ReferencedSingleton<StateAttributeFactory> {
47 public:
48     // Alpha test > .01
49     osg::AlphaFunc* getStandardAlphaFunc() { return _standardAlphaFunc.get(); }
50     // alpha source, 1 - alpha destination
51     osg::BlendFunc* getStandardBlendFunc() { return _standardBlendFunc.get(); }
52     // modulate
53     osg::TexEnv* getStandardTexEnv() { return _standardTexEnv.get(); }
54     osg::ShadeModel* getSmoothShadeModel() { return _smooth.get(); }
55     osg::ShadeModel* getFlatShadeModel() { return _flat.get(); }
56     // White, repeating texture
57     osg::Texture2D* getWhiteTexture() { return _whiteTexture.get(); }
58     // White color
59     osg::Vec4Array* getWhiteColor() {return _white.get(); }
60     // A white, completely transparent texture
61     osg::Texture2D* getTransparentTexture()
62     {
63         return _transparentTexture.get();
64     }
65     // cull front and back facing polygons
66     osg::CullFace* getCullFaceFront() { return _cullFaceFront.get(); }
67     osg::CullFace* getCullFaceBack() { return _cullFaceBack.get(); }
68     // Standard depth with writes disabled.
69     osg::Depth* getDepthWritesDisabled() { return _depthWritesDisabled.get(); }
70     StateAttributeFactory();    
71 protected:
72     osg::ref_ptr<osg::AlphaFunc> _standardAlphaFunc;
73     osg::ref_ptr<osg::ShadeModel> _smooth;
74     osg::ref_ptr<osg::ShadeModel> _flat;
75     osg::ref_ptr<osg::BlendFunc> _standardBlendFunc;
76     osg::ref_ptr<osg::TexEnv> _standardTexEnv;
77     osg::ref_ptr<osg::Texture2D> _whiteTexture;
78     osg::ref_ptr<osg::Texture2D> _transparentTexture;
79     osg::ref_ptr<osg::Vec4Array> _white;
80     osg::ref_ptr<osg::CullFace> _cullFaceFront;
81     osg::ref_ptr<osg::CullFace> _cullFaceBack;
82     osg::ref_ptr<osg::Depth> _depthWritesDisabled;
83 };
84 }
85 #endif