X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fsequencetemplate.h;h=972a6b0b18939e6deda71e243d3dd89a31594eb9;hp=32736d8ee7645e255255d9275abb6156db354b1a;hb=c8520aa336e92f2eaf9a38c3430c608520a90324;hpb=3ac3a51c623271da815c8ee60c484445871753bf diff --git a/source/builders/sequencetemplate.h b/source/builders/sequencetemplate.h index 32736d8e..972a6b0b 100644 --- a/source/builders/sequencetemplate.h +++ b/source/builders/sequencetemplate.h @@ -6,13 +6,14 @@ #include #include #include "blend.h" +#include "depthtest.h" #include "postprocessor.h" -#include "predicate.h" +#include "resources.h" +#include "stenciltest.h" namespace Msp { namespace GL { -class DepthTest; class Lighting; class Renderable; @@ -53,6 +54,7 @@ public: Loader(SequenceTemplate &, Collection &); virtual void postprocessor_loaded(); + void clear(); void multisample(unsigned); void multisample_range(unsigned, unsigned); void postprocessor(const std::string &); @@ -68,33 +70,29 @@ public: std::string inline_base_name; public: - Loader(Step &); Loader(Step &, Collection &); - private: - void init(); - public: void set_inline_base_name(const std::string &); private: - void blend(BlendFactor, BlendFactor); - void blend_predefined(const std::string &); - void depth_test(Predicate); - void depth_test_predefined(const std::string &); + void blend(); + void blend_factors(BlendFactor, BlendFactor); + void depth_test(); + void depth_compare(Predicate); void lighting(const std::string &); void lighting_inline(); void object(const std::string &); void scene(const std::string &); + void stencil_test(); }; std::string tag; - const Lighting *lighting; - RefPtr depth_test; - RefPtr blend; + const Lighting *lighting = 0; + DepthTest depth_test; + StencilTest stencil_test; + Blend blend; std::string slot_name; - Renderable *default_renderable; - - ~Step(); + Renderable *default_renderable = 0; }; struct PostProcessor @@ -105,20 +103,32 @@ public: PostProcessor(GL::PostProcessor::Template * = 0); }; - typedef std::vector PostProcessorArray; - private: + class ClearLoader: public DataFile::ObjectLoader + { + public: + ClearLoader(SequenceTemplate &); + + private: + void color(float, float, float, float); + void depth(float); + void stencil(int); + }; + typedef TypeRegistry PostProcessorRegistry; - bool hdr; - bool alpha; - unsigned required_multisample; - unsigned max_multisample; + bool hdr = false; + bool alpha = false; + unsigned required_multisample = 0; + unsigned max_multisample = 0; std::vector steps; - PostProcessorArray postprocessors; + std::vector postprocessors; + bool clear_enabled = false; + std::vector clear_colors; + float clear_depth = 1.0f; + int clear_stencil = 0; public: - SequenceTemplate(); ~SequenceTemplate(); bool get_hdr() const { return hdr; } @@ -126,7 +136,11 @@ public: unsigned get_required_multisample() const { return required_multisample; } unsigned get_maximum_multisample() const { return max_multisample; } const std::vector &get_steps() const { return steps; } - const PostProcessorArray &get_postprocessors() const { return postprocessors; } + const std::vector &get_postprocessors() const { return postprocessors; } + bool is_clear_enabled() const { return clear_enabled; } + const std::vector &get_clear_colors() const { return clear_colors; } + float get_clear_depth() const { return clear_depth; } + int get_clear_stencil() const { return clear_stencil; } template static void register_postprocessor(const std::string &);