X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frangecondition.h;h=d4d11fa852605bb4f93b13be0e97c14ea5dc8c5c;hb=51ea3d1cf0f411f0a41367bf218e28f9c16d86e0;hp=c107287919f2fe69140fe347ed54c659ad74bdc6;hpb=715006802a65fa5f541f2f4bcccbdd62d1a2bf09;p=poefilter.git diff --git a/source/rangecondition.h b/source/rangecondition.h index c107287..d4d11fa 100644 --- a/source/rangecondition.h +++ b/source/rangecondition.h @@ -19,7 +19,10 @@ public: RangeCondition(Type); RangeCondition(Type, Type); - virtual Condition *clone() const; + virtual RangeCondition *clone() const; + virtual bool can_merge(const Condition &, const CompoundCondition &) const; + virtual RangeCondition *merge(const std::vector &, const CompoundCondition &) const; + virtual bool is_viable() const { return min<=max; } virtual void add_lines(std::list &) const; }; @@ -49,7 +52,7 @@ typedef RangeCondition QualityCondition; struct ItemLevelTraits { typedef unsigned Type; - static unsigned get_min() { return 0; } + static unsigned get_min() { return 1; } static unsigned get_max() { return 100; } static const char *get_keyword() { return "ItemLevel"; } }; @@ -60,7 +63,7 @@ typedef RangeCondition ItemLevelCondition; struct DropLevelTraits { typedef unsigned Type; - static unsigned get_min() { return 0; } + static unsigned get_min() { return 1; } static unsigned get_max() { return 100; } static const char *get_keyword() { return "DropLevel"; } }; @@ -125,11 +128,35 @@ RangeCondition::RangeCondition(Type n, Type x): { } template -Condition *RangeCondition::clone() const +RangeCondition *RangeCondition::clone() const { return new RangeCondition(min, max); } +template +bool RangeCondition::can_merge(const Condition &other, const CompoundCondition &parent) const +{ + return dynamic_cast *>(&other) && dynamic_cast(&parent); +} + +template +RangeCondition *RangeCondition::merge(const std::vector &conditions, const CompoundCondition &parent) const +{ + if(dynamic_cast(&parent) && !conditions.empty()) + { + RangeCondition *result = new RangeCondition(Traits::get_min(), Traits::get_max()); + for(std::vector::const_iterator i=conditions.begin(); i!=conditions.end(); ++i) + { + const RangeCondition *c = static_cast *>(*i); + result->min = std::max(result->min, c->min); + result->max = std::min(result->max, c->max); + } + return result; + } + else + return 0; +} + template void RangeCondition::add_lines(std::list &st) const {