summaryrefslogtreecommitdiff
path: root/domain/src/turn_order.cpp
blob: 4c5c58738901af8f4eb137caeca651f033a08182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "turns/domain/turn_order.hpp"

namespace turns::domain
{

  namespace
  {
    auto constexpr comparator = [](auto lhs, auto rhs){
      auto result = *lhs <=> *rhs;
      if(result == std::partial_ordering::equivalent || result == std::partial_ordering::unordered)
      {
        return 0;
      }
      else if(result == std::partial_ordering::less)
      {
        return 1;
      }
      return -1;
    };
  }

  auto turn_order::create() -> Glib::RefPtr<turn_order>
  {
    return Glib::make_refptr_for_instance(new turn_order{});
  }

  auto turn_order::append(Glib::ustring const & name, float priority) -> void
  {
    auto participant = participant::create(name, priority);
    participant->property_priority().signal_changed().connect([this] { sort(); });
    insert_sorted(participant, comparator);
  }

  auto turn_order::remove(Glib::RefPtr<participant> item) -> void
  {
    if (auto [was_found, index] = find(item); was_found)
    {
      super::remove(index);
    }
  }

  auto turn_order::sort() -> void
  {
    super::sort(comparator);
  }

}  // namespace turns::domain