mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
a2e709d86b
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@275 0fc631ac-6414-0410-93d0-97cfa31319b6
268 lines
8.4 KiB
C++
268 lines
8.4 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2007 Twan van Laarhoven |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <gui/value/choice.hpp>
|
|
#include <gui/util.hpp>
|
|
#include <gui/thumbnail_thread.hpp>
|
|
#include <data/action/value.hpp>
|
|
#include <data/stylesheet.hpp>
|
|
#include <script/image.hpp>
|
|
|
|
DECLARE_TYPEOF_COLLECTION(ChoiceField::ChoiceP);
|
|
|
|
// ----------------------------------------------------------------------------- : ChoiceThumbnailRequest
|
|
|
|
class ChoiceThumbnailRequest : public ThumbnailRequest {
|
|
public:
|
|
ChoiceThumbnailRequest(ValueViewer* cve, int id, bool from_disk);
|
|
virtual Image generate();
|
|
virtual void store(const Image&);
|
|
private:
|
|
StyleSheetP stylesheet;
|
|
int id;
|
|
};
|
|
|
|
ChoiceThumbnailRequest::ChoiceThumbnailRequest(ValueViewer* cve, int id, bool from_disk)
|
|
: ThumbnailRequest(
|
|
cve,
|
|
cve->viewer.stylesheet->name() + _("/") + cve->getField()->name + _("/") << id,
|
|
from_disk ? cve->viewer.stylesheet->lastModified()
|
|
: wxDateTime::Now()
|
|
)
|
|
, stylesheet(cve->viewer.stylesheet)
|
|
, id(id)
|
|
{}
|
|
|
|
Image ChoiceThumbnailRequest::generate() {
|
|
ChoiceValueEditor& cve = *(ChoiceValueEditor*)owner;
|
|
Context& ctx = cve.getSet().getContextForThumbnails(stylesheet);
|
|
String name = cannocial_name_form(cve.field().choices->choiceName(id));
|
|
ScriptableImage& img = cve.style().choice_images[name];
|
|
return img.generate(ctx, *stylesheet, 16, 16, ASPECT_BORDER, true)->image;
|
|
}
|
|
|
|
void ChoiceThumbnailRequest::store(const Image& img) {
|
|
ChoiceValueEditor& cve = *(ChoiceValueEditor*)owner;
|
|
wxImageList* il = cve.style().thumbnails;
|
|
while (id > il->GetImageCount()) {
|
|
il->Add(wxBitmap(16,16),*wxBLACK);
|
|
}
|
|
if (img.Ok()) {
|
|
#ifdef __WXMSW__
|
|
// for some reason windows doesn't like completely transparent images if they do not have a mask
|
|
// HACK:
|
|
if (img.HasAlpha() && img.GetWidth() == 16 && img.GetHeight() == 16) {
|
|
// is the image empty?
|
|
bool empty = true;
|
|
int* b = (int*)img.GetAlpha();
|
|
int* e = b + 16*16/sizeof(int);
|
|
while (b != e) {
|
|
if (*b++) {
|
|
empty = false;
|
|
break;
|
|
}
|
|
}
|
|
// if so, use a mask instead
|
|
if (empty) {
|
|
const_cast<Image&>(img).ConvertAlphaToMask();
|
|
}
|
|
}
|
|
// Hack ends here
|
|
#endif
|
|
if (id == il->GetImageCount()) {
|
|
il->Add(img);
|
|
} else {
|
|
il->Replace(id, img);
|
|
}
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : DropDownChoiceListBase
|
|
|
|
DropDownChoiceListBase::DropDownChoiceListBase
|
|
(Window* parent, bool is_submenu, ValueViewer& cve, ChoiceField::ChoiceP group)
|
|
: DropDownList(parent, is_submenu, is_submenu ? nullptr : &cve)
|
|
, cve(cve)
|
|
, group(group)
|
|
{
|
|
icon_size.width = 16;
|
|
icon_size.height = 16;
|
|
item_size.height = max(16., item_size.height);
|
|
}
|
|
|
|
size_t DropDownChoiceListBase::itemCount() const {
|
|
return group->choices.size() + hasDefault();
|
|
}
|
|
|
|
ChoiceField::ChoiceP DropDownChoiceListBase::getChoice(size_t item) const {
|
|
if (isGroupDefault(item)) {
|
|
return group;
|
|
} else {
|
|
return group->choices[item - hasDefault()];
|
|
}
|
|
}
|
|
|
|
String DropDownChoiceListBase::itemText(size_t item) const {
|
|
if (isFieldDefault(item)) {
|
|
return field().default_name;
|
|
} else if (isGroupDefault(item)) {
|
|
return group->default_name;
|
|
} else {
|
|
ChoiceField::ChoiceP choice = getChoice(item);
|
|
return choice->name;
|
|
}
|
|
}
|
|
bool DropDownChoiceListBase::lineBelow(size_t item) const {
|
|
return isDefault(item);
|
|
}
|
|
DropDownList* DropDownChoiceListBase::submenu(size_t item) const {
|
|
if (isDefault(item)) return nullptr;
|
|
item -= hasDefault();
|
|
if (item >= submenus.size()) submenus.resize(item + 1);
|
|
if (submenus[item]) return submenus[item].get();
|
|
ChoiceField::ChoiceP choice = group->choices[item];
|
|
if (choice->isGroup()) {
|
|
// create submenu
|
|
submenus[item].reset(createSubMenu(choice));
|
|
}
|
|
return submenus[item].get();
|
|
}
|
|
|
|
void DropDownChoiceListBase::drawIcon(DC& dc, int x, int y, size_t item, bool selected) const {
|
|
// imagelist to use
|
|
wxImageList* il = style().thumbnails;
|
|
assert(il);
|
|
// find the image for the item
|
|
int image_id;
|
|
if (isFieldDefault(item)) {
|
|
image_id = default_id;
|
|
} else {
|
|
image_id = getChoice(item)->first_id;
|
|
}
|
|
// draw image
|
|
if (image_id < il->GetImageCount()) {
|
|
il->Draw(image_id, dc, x, y);
|
|
}
|
|
}
|
|
|
|
void DropDownChoiceListBase::generateThumbnailImages() {
|
|
if (!isRoot()) return;
|
|
if (!style().thumbnails) {
|
|
style().thumbnails = new wxImageList(16,16);
|
|
}
|
|
int image_count = style().thumbnails->GetImageCount();
|
|
int end = group->lastId();
|
|
Context& ctx = cve.viewer.getContext();
|
|
for (int i = 0 ; i < end ; ++i) {
|
|
String name = cannocial_name_form(group->choiceName(i));
|
|
ScriptableImage& img = style().choice_images[name];
|
|
bool up_to_date = img.upToDate(ctx, style().thumbnail_age);
|
|
if (i >= image_count || !up_to_date) {
|
|
// TODO : handle the case where image i was previously skipped
|
|
// request this thumbnail
|
|
thumbnail_thread.request( new_shared3<ChoiceThumbnailRequest>(&cve, i, up_to_date && !style().invalidated_images) );
|
|
}
|
|
}
|
|
style().thumbnail_age.update();
|
|
}
|
|
|
|
void DropDownChoiceListBase::onIdle(wxIdleEvent& ev) {
|
|
if (!isRoot()) return;
|
|
if (thumbnail_thread.done(&cve)) {
|
|
Refresh(false);
|
|
}
|
|
}
|
|
|
|
BEGIN_EVENT_TABLE(DropDownChoiceListBase, DropDownList)
|
|
EVT_IDLE(DropDownChoiceListBase::onIdle)
|
|
END_EVENT_TABLE()
|
|
|
|
// ----------------------------------------------------------------------------- : DropDownChoiceList
|
|
|
|
DropDownChoiceList::DropDownChoiceList(Window* parent, bool is_submenu, ValueViewer& cve, ChoiceField::ChoiceP group)
|
|
: DropDownChoiceListBase(parent, is_submenu, cve, group)
|
|
{}
|
|
|
|
void DropDownChoiceList::select(size_t item) {
|
|
if (isFieldDefault(item)) {
|
|
dynamic_cast<ChoiceValueEditor&>(cve).change( Defaultable<String>() );
|
|
} else {
|
|
ChoiceField::ChoiceP choice = getChoice(item);
|
|
dynamic_cast<ChoiceValueEditor&>(cve).change( field().choices->choiceName(choice->first_id) );
|
|
}
|
|
}
|
|
|
|
size_t DropDownChoiceList::selection() const {
|
|
// we need thumbnail images soon
|
|
const_cast<DropDownChoiceList*>(this)->generateThumbnailImages();
|
|
// selected item
|
|
const Defaultable<String>& value = dynamic_cast<ChoiceValueEditor&>(cve).value().value();
|
|
int id = field().choices->choiceId(value);
|
|
// id of default item
|
|
if (hasFieldDefault()) {
|
|
if (value.isDefault()) {
|
|
// default is selected
|
|
default_id = id;
|
|
return 0;
|
|
} else {
|
|
// run default script to find out what the default choice would be
|
|
String default_choice = *field().default_script.invoke( cve.viewer.getContext() );
|
|
default_id = group->choiceId(default_choice);
|
|
}
|
|
}
|
|
// item corresponding to id
|
|
size_t i = hasDefault();
|
|
FOR_EACH(c, group->choices) {
|
|
if (id >= c->first_id && id < c->lastId()) {
|
|
return i;
|
|
}
|
|
i++;
|
|
}
|
|
return NO_SELECTION;
|
|
}
|
|
|
|
DropDownList* DropDownChoiceList::createSubMenu(ChoiceField::ChoiceP group) const {
|
|
return new DropDownChoiceList(const_cast<DropDownChoiceList*>(this), true, cve, group);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : ChoiceValueEditor
|
|
|
|
IMPLEMENT_VALUE_EDITOR(Choice)
|
|
, drop_down(new DropDownChoiceList(&editor(), false, *this, field().choices))
|
|
{}
|
|
|
|
ChoiceValueEditor::~ChoiceValueEditor() {
|
|
thumbnail_thread.abort(this);
|
|
}
|
|
|
|
bool ChoiceValueEditor::onLeftDown(const RealPoint& pos, wxMouseEvent& ev) {
|
|
//HACK TODO REMOVEME
|
|
//thumbnail_thread.abortAll();
|
|
return drop_down->onMouseInParent(ev, style().popup_style == POPUP_DROPDOWN_IN_PLACE && !nativeLook());
|
|
}
|
|
bool ChoiceValueEditor::onChar(wxKeyEvent& ev) {
|
|
return drop_down->onCharInParent(ev);
|
|
}
|
|
void ChoiceValueEditor::onLoseFocus() {
|
|
drop_down->hide(false);
|
|
}
|
|
|
|
void ChoiceValueEditor::draw(RotatedDC& dc) {
|
|
ChoiceValueViewer::draw(dc);
|
|
if (nativeLook()) {
|
|
draw_drop_down_arrow(&editor(), dc.getDC(), dc.tr(style().getRect().grow(1)), drop_down->IsShown());
|
|
}
|
|
}
|
|
void ChoiceValueEditor::determineSize(bool) {
|
|
style().height = max(style().height(), 16.);
|
|
}
|
|
|
|
void ChoiceValueEditor::change(const Defaultable<String>& c) {
|
|
getSet().actions.add(value_action(valueP(), c));
|
|
}
|