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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
#include "MilitaryPanel.h"
#include <GG/Button.h>
#include "../util/i18n.h"
#include "../util/Logger.h"
#include "../universe/UniverseObject.h"
#include "../universe/Planet.h"
#include "../universe/Enums.h"
#include "../client/human/GGHumanClientApp.h"
#include "ClientUI.h"
#include "CUIControls.h"
#include "MeterBrowseWnd.h"
#include "MultiIconValueIndicator.h"
#include "MultiMeterStatusBar.h"
namespace {
constexpr int EDGE_PAD(3);
/** How big we want meter icons with respect to the current UI font size.
* Meters should scale along font size, but not below the size for the
* default 12 points font. */
GG::Pt MeterIconSize() {
const int icon_size = std::max(ClientUI::Pts(), 12) * 4/3;
return GG::Pt(GG::X(icon_size), GG::Y(icon_size));
}
}
MilitaryPanel::MilitaryPanel(GG::X w, int planet_id) :
AccordionPanel(w, GG::Y(ClientUI::Pts()*2)),
m_planet_id(planet_id)
{}
void MilitaryPanel::CompleteConstruction() {
AccordionPanel::CompleteConstruction();
SetName("MilitaryPanel");
auto planet = Objects().get<Planet>(m_planet_id);
if (!planet)
throw std::invalid_argument("Attempted to construct a MilitaryPanel with an object id is not a Planet");
m_expand_button->LeftPressedSignal.connect(
boost::bind(&MilitaryPanel::ExpandCollapseButtonPressed, this));
const auto obj = Objects().get(m_planet_id);
if (!obj) {
ErrorLogger() << "Invalid object id " << m_planet_id;
return;
}
// meter and production indicators
std::vector<std::pair<MeterType, MeterType>> meters;
// small meter indicators - for use when panel is collapsed
for (MeterType meter : {MeterType::METER_SHIELD, MeterType::METER_DEFENSE, MeterType::METER_TROOPS,
MeterType::METER_DETECTION, MeterType::METER_STEALTH})
{
auto stat = GG::Wnd::Create<StatisticIcon>(
ClientUI::MeterIcon(meter), obj->GetMeter(meter)->Initial(),
3, false, MeterIconSize().x, MeterIconSize().y);
AttachChild(stat);
m_meter_stats.emplace_back(meter, stat);
meters.emplace_back(meter, AssociatedMeterType(meter));
stat->RightClickedSignal.connect([meter](GG::Pt pt) {
auto meter_string = to_string(meter);
auto zoom_action = [meter_string]() { ClientUI::GetClientUI()->ZoomToMeterTypeArticle(std::string{meter_string}); };
auto popup = GG::Wnd::Create<CUIPopupMenu>(pt.x, pt.y);
std::string popup_label = boost::io::str(FlexibleFormat(UserString("ENC_LOOKUP")) %
UserString(meter_string));
popup->AddMenuItem(GG::MenuItem(std::move(popup_label), false, false, zoom_action));
popup->Run();
});
}
// attach and show meter bars and large resource indicators
m_multi_meter_status_bar = GG::Wnd::Create<MultiMeterStatusBar>(Width() - 2*EDGE_PAD, m_planet_id, meters);
m_multi_icon_value_indicator = GG::Wnd::Create<MultiIconValueIndicator>(Width() - 2*EDGE_PAD, m_planet_id, meters);
// determine if this panel has been created yet.
auto it = s_expanded_map.find(m_planet_id);
if (it == s_expanded_map.end())
s_expanded_map[m_planet_id] = false; // if not, default to collapsed state
Refresh();
}
void MilitaryPanel::ExpandCollapse(bool expanded) {
if (expanded == s_expanded_map[m_planet_id]) return; // nothing to do
s_expanded_map[m_planet_id] = expanded;
DoLayout();
}
void MilitaryPanel::Update() {
auto obj = Objects().get(m_planet_id);
if (!obj) {
ErrorLogger() << "MilitaryPanel::Update coudln't get object with id " << m_planet_id;
return;
}
// meter bar displays military stats
m_multi_meter_status_bar->Update();
m_multi_icon_value_indicator->Update();
// tooltips
for (auto& [meter_type, stat] : m_meter_stats) {
const auto* meter = obj->GetMeter(meter_type);
if (!meter) {
ErrorLogger() << "MilitaryPanel couldn't get " << to_string(meter_type)
<< " meter from " << obj->Name() << " (" << obj->ID() << ")";
continue;
}
stat->SetValue(meter->Initial());
auto browse_wnd = GG::Wnd::Create<MeterBrowseWnd>(m_planet_id, meter_type, AssociatedMeterType(meter_type));
m_multi_icon_value_indicator->SetToolTip(meter_type, browse_wnd);
stat->SetBrowseInfoWnd(std::move(browse_wnd));
}
}
void MilitaryPanel::Refresh() {
for (auto& meter_stat : m_meter_stats)
meter_stat.second->RequirePreRender();
RequirePreRender();
}
void MilitaryPanel::PreRender() {
AccordionPanel::PreRender();
Update();
DoLayout();
}
void MilitaryPanel::ExpandCollapseButtonPressed()
{ ExpandCollapse(!s_expanded_map[m_planet_id]); }
void MilitaryPanel::DoLayout() {
AccordionPanel::DoLayout();
for (auto& meter_stat : m_meter_stats) {
DetachChild(meter_stat.second);
}
// detach / hide meter bars and large resource indicators
DetachChild(m_multi_meter_status_bar);
DetachChild(m_multi_icon_value_indicator);
// update size of panel and position and visibility of widgets
if (!s_expanded_map[m_planet_id]) {
// position and reattach icons to be shown
int n = 0;
GG::X stride = MeterIconSize().x * 7/2;
for (auto& meter_stat : m_meter_stats) {
GG::X x = n * stride;
auto& icon = meter_stat.second;
GG::Pt icon_ul(x, GG::Y0);
GG::Pt icon_lr = icon_ul + MeterIconSize();
icon->SizeMove(icon_ul, icon_lr);
if (x + icon->MinUsableSize().x >= ClientWidth())
break;
AttachChild(icon);
icon->Show();
n++;
}
Resize(GG::Pt(Width(), std::max(MeterIconSize().y, m_expand_button->Height())));
} else {
// attach and show meter bars and large resource indicators
GG::Y top = Top();
AttachChild(m_multi_icon_value_indicator);
m_multi_icon_value_indicator->MoveTo(GG::Pt(GG::X(EDGE_PAD), GG::Y(EDGE_PAD)));
m_multi_icon_value_indicator->Resize(GG::Pt(Width() - 2*EDGE_PAD, m_multi_icon_value_indicator->Height()));
AttachChild(m_multi_meter_status_bar);
m_multi_meter_status_bar->MoveTo(GG::Pt(GG::X(EDGE_PAD), m_multi_icon_value_indicator->Bottom() + EDGE_PAD - top));
m_multi_meter_status_bar->Resize(GG::Pt(Width() - 2*EDGE_PAD, m_multi_meter_status_bar->Height()));
MoveChildUp(m_expand_button);
Resize(GG::Pt(Width(), m_multi_meter_status_bar->Bottom() + EDGE_PAD - top));
}
SetCollapsed(!s_expanded_map[m_planet_id]);
}
std::map<int, bool> MilitaryPanel::s_expanded_map;
|