/* * The ManaPlus Client * Copyright (C) 2010 The Mana Developers * Copyright (C) 2011-2013 The ManaPlus Developers * * This file is part of The ManaPlus Client. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "gui/widgets/avatarlistbox.h" #include "actorspritemanager.h" #include "configuration.h" #include "guild.h" #include "localplayer.h" #include "maplayer.h" #include "gui/chatwindow.h" #include "gui/gui.h" #include "gui/sdlfont.h" #include "gui/viewport.h" #include "resources/image.h" #include "resources/resourcemanager.h" #include #include "debug.h" int AvatarListBox::instances = 0; Image *AvatarListBox::onlineIcon = nullptr; Image *AvatarListBox::offlineIcon = nullptr; AvatarListBox::AvatarListBox(const Widget2 *const widget, AvatarListModel *const model) : ListBox(widget, model, "avatarlistbox.xml"), mShowGender(config.getBoolValue("showgender")), mShowLevel(config.getBoolValue("showlevel")), mImagePadding(mSkin ? mSkin->getOption("imagePadding") : 0), mHighlightColor(getThemeColor(Theme::HIGHLIGHT)) { instances++; if (instances == 1) { onlineIcon = Theme::getImageFromThemeXml("circle-on.xml", ""); offlineIcon = Theme::getImageFromThemeXml("circle-off.xml", ""); } setWidth(200); config.addListener("showgender", this); config.addListener("showlevel", this); mForegroundColor = getThemeColor(Theme::TEXT); } AvatarListBox::~AvatarListBox() { config.removeListeners(this); instances--; if (instances == 0) { if (onlineIcon) { onlineIcon->decRef(); onlineIcon = nullptr; } if (offlineIcon) { offlineIcon->decRef(); offlineIcon = nullptr; } } } void AvatarListBox::draw(gcn::Graphics *gcnGraphics) { BLOCK_START("AvatarListBox::draw") if (!mListModel || !player_node) { BLOCK_END("AvatarListBox::draw") return; } AvatarListModel *const model = static_cast( mListModel); // Guild *guild = dynamic_cast(model); updateAlpha(); Graphics *const graphics = static_cast(gcnGraphics); mHighlightColor.a = static_cast(mAlpha * 255.0f); gcn::Font *const font = getFont(); const int fontHeight = getFont()->getHeight(); const gcn::Widget *const parent = mParent; const std::string name = player_node->getName(); // Draw the list elements graphics->setColor(mForegroundColor); for (int i = 0, y = 0; i < model->getNumberOfElements(); ++i, y += fontHeight) { const Avatar *const a = model->getAvatarAt(i); if (!a) continue; if (a->getType() != MapItem::SEPARATOR) { // Draw online status const Image *const icon = a->getOnline() ? onlineIcon : offlineIcon; if (icon) graphics->drawImage(icon, mImagePadding, y + mPadding); } std::string text; if (a->getMaxHp() > 0) { if (mShowLevel && a->getLevel() > 1) { text = strprintf("%s %d/%d (%d)", a->getComplexName().c_str(), a->getHp(), a->getMaxHp(), a->getLevel()); } else { text = strprintf("%s %d/%d", a->getComplexName().c_str(), a->getHp(), a->getMaxHp()); } if (parent && a->getMaxHp()) { gcn::Color color = Theme::getProgressColor( Theme::PROG_HP, static_cast(a->getHp()) / static_cast(a->getMaxHp())); color.a = 80; graphics->setColor(color); graphics->fillRectangle(gcn::Rectangle(mPadding, y + mPadding, parent->getWidth() * a->getHp() / a->getMaxHp() - 2 * mPadding, fontHeight)); } } else if (a->getDamageHp() != 0 && a->getName() != name) { if (mShowLevel && a->getLevel() > 1) { text = strprintf("%s -%d (%d)", a->getComplexName().c_str(), a->getDamageHp(), a->getLevel()); } else { text = strprintf("%s -%d", a->getComplexName().c_str(), a->getDamageHp()); } if (parent) { gcn::Color color = Theme::getProgressColor(Theme::PROG_HP, 1); color.a = 80; graphics->setColor(color); graphics->fillRectangle(gcn::Rectangle(mPadding, y + mPadding, parent->getWidth() * a->getDamageHp() / 1024 - 2 * mPadding, fontHeight)); if (a->getLevel() > 1) { graphics->setColor(mForegroundColor); int minHp = 40 + ((a->getLevel() - 1) * 5); if (minHp < 0) minHp = 40; graphics->drawLine(parent->getWidth()*minHp / 1024 + mPadding, y + mPadding, parent->getWidth() * minHp / 1024, y + fontHeight); } } } else { if (mShowLevel && a->getLevel() > 1) { text = strprintf("%s (%d)", a->getComplexName().c_str(), a->getLevel()); } else { text = a->getComplexName(); } } if (!a->getMap().empty()) { if (a->getX() != -1) { text += strprintf(" [%d,%d %s]", a->getX(), a->getY(), a->getMap().c_str()); } else { text += strprintf(" [%s]", a->getMap().c_str()); } } if (graphics->getSecure()) { if (mShowGender) { switch (a->getGender()) { case GENDER_FEMALE: text += strprintf(" \u2640 "); break; case GENDER_MALE: text += strprintf(" \u2642 "); break; default: break; } } } else { if (mShowGender) { switch (a->getGender()) { case GENDER_FEMALE: text += strprintf(" \u2640 %s", a->getAdditionString().c_str()); break; case GENDER_MALE: text += strprintf(" \u2642 %s", a->getAdditionString().c_str()); break; default: break; } } else { text += a->getAdditionString(); } } graphics->setColor(mForegroundColor); // Draw Name if (a->getDisplayBold()) { if (a->getType() == MapItem::SEPARATOR) { boldFont->drawString(graphics, text, mImagePadding + mPadding, y + mPadding); } else { boldFont->drawString(graphics, text, 15 + mImagePadding + mPadding, y + mPadding); } } else { if (a->getType() == MapItem::SEPARATOR) { font->drawString(graphics, text, mImagePadding + mPadding, y + mPadding); } else { font->drawString(graphics, text, 15 + mImagePadding + mPadding, y + mPadding); } } } setWidth(parent->getWidth() - 10); BLOCK_END("AvatarListBox::draw") } void AvatarListBox::mousePressed(gcn::MouseEvent &event) { if (!actorSpriteManager || !player_node || !viewport || !getFont()->getHeight()) { return; } const int y = (event.getY() - mPadding) / getFont()->getHeight(); if (!mListModel || y > mListModel->getNumberOfElements()) return; setSelected(y); distributeActionEvent(); const int selected = getSelected(); AvatarListModel *const model = static_cast( mListModel); if (!model) return; const Avatar *ava = model->getAvatarAt(selected); if (!ava) return; if (event.getButton() == gcn::MouseEvent::LEFT) { if (ava->getType() == AVATAR_PLAYER) { const Being *const being = actorSpriteManager->findBeingByName( ava->getName(), Being::PLAYER); if (being) actorSpriteManager->heal(being); } else { player_node->navigateTo(ava->getX(), ava->getY()); } } else if (event.getButton() == gcn::MouseEvent::RIGHT) { switch (ava->getType()) { case AVATAR_PLAYER: { const Avatar *const avatar = model->getAvatarAt(selected); if (avatar) { const Being *const being = actorSpriteManager ->findBeingByName(avatar->getName(), Being::PLAYER); if (being) viewport->showPopup(being); else viewport->showPlayerPopup(avatar->getName()); } break; } case MapItem::ATTACK: case MapItem::PRIORITY: case MapItem::IGNORE_: { std::string name; if (model->getAvatarAt(selected)->getLevel() == 0) name.clear(); else name = model->getAvatarAt(selected)->getName(); viewport->showAttackMonsterPopup(name, model->getAvatarAt(selected)->getType()); break; } case MapItem::PICKUP: case MapItem::NOPICKUP: { std::string name; if (model->getAvatarAt(selected)->getLevel() == 0) name.clear(); else name = model->getAvatarAt(selected)->getName(); viewport->showPickupItemPopup(name); break; } default: { const Map *const map = viewport->getMap(); ava = model->getAvatarAt(selected); if (map && ava) { MapItem *const mapItem = map->findPortalXY( ava->getX(), ava->getY()); viewport->showPopup(mapItem); } break; } } } else if (event.getButton() == gcn::MouseEvent::MIDDLE) { if (ava->getType() == AVATAR_PLAYER && chatWindow) { const WhisperTab *const tab = chatWindow->addWhisperTab( model->getAvatarAt(selected)->getName(), true); if (chatWindow && tab) chatWindow->saveState(); } } } void AvatarListBox::optionChanged(const std::string &value) { if (value == "showgender") mShowGender = config.getBoolValue("showgender"); else if (value == "showlevel") mShowLevel = config.getBoolValue("showlevel"); }