00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef OST_GFX_RENDER_OPTIONS_HH
00024 #define OST_GFX_RENDER_OPTIONS_HH
00025 #include <vector>
00026
00027 #include <boost/shared_ptr.hpp>
00028
00029 #include <ost/gfx/module_config.hh>
00030 #include <ost/gfx/render_mode.hh>
00031 #include <ost/gfx/entity_fw.hh>
00032
00033
00034
00035 namespace ost { namespace gfx {
00036
00037 class RenderOptions;
00038 typedef boost::shared_ptr<RenderOptions> RenderOptionsPtr;
00039
00040 class DLLEXPORT_OST_GFX RenderOptions {
00041 public:
00042 RenderOptions();
00043 virtual ~RenderOptions(){}
00044
00045 virtual RenderMode::Type GetRenderMode()=0;
00046 virtual bool CanApplyRenderOptions(RenderOptionsPtr render_options)=0;
00047 virtual void ApplyRenderOptions(RenderOptionsPtr render_options)=0;
00048
00049 bool AddObserver( EntityP entity);
00050 bool RemoveObserver( EntityP entity);
00051 void NotifyStateChange();
00052
00053 private:
00054 typedef std::vector< EntityW > EntityWObservers;
00055 EntityWObservers observers_;
00056
00057 };
00058
00059 }}
00060
00061 #endif