godot/editor/progress_dialog.cpp

230 lines
6.9 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* progress_dialog.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "progress_dialog.h"
#include "editor_scale.h"
2014-02-10 02:10:30 +01:00
#include "main/main.h"
#include "message_queue.h"
#include "os/os.h"
void BackgroundProgress::_add_task(const String &p_task, const String &p_label, int p_steps) {
2014-02-10 02:10:30 +01:00
_THREAD_SAFE_METHOD_
ERR_FAIL_COND(tasks.has(p_task));
Task t;
t.hb = memnew(HBoxContainer);
Label *l = memnew(Label);
l->set_text(p_label + " ");
2014-02-10 02:10:30 +01:00
t.hb->add_child(l);
t.progress = memnew(ProgressBar);
2014-02-10 02:10:30 +01:00
t.progress->set_max(p_steps);
t.progress->set_value(p_steps);
Control *ec = memnew(Control);
2014-02-10 02:10:30 +01:00
ec->set_h_size_flags(SIZE_EXPAND_FILL);
ec->set_v_size_flags(SIZE_EXPAND_FILL);
t.progress->set_anchors_and_margins_preset(Control::PRESET_WIDE);
2014-02-10 02:10:30 +01:00
ec->add_child(t.progress);
ec->set_custom_minimum_size(Size2(80, 5) * EDSCALE);
2014-02-10 02:10:30 +01:00
t.hb->add_child(ec);
add_child(t.hb);
tasks[p_task] = t;
2014-02-10 02:10:30 +01:00
}
void BackgroundProgress::_update() {
_THREAD_SAFE_METHOD_
for (Map<String, int>::Element *E = updates.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
if (tasks.has(E->key())) {
_task_step(E->key(), E->get());
2014-02-10 02:10:30 +01:00
}
}
updates.clear();
}
void BackgroundProgress::_task_step(const String &p_task, int p_step) {
2014-02-10 02:10:30 +01:00
_THREAD_SAFE_METHOD_
ERR_FAIL_COND(!tasks.has(p_task));
Task &t = tasks[p_task];
if (p_step < 0)
t.progress->set_value(t.progress->get_value() + 1);
2014-02-10 02:10:30 +01:00
else
t.progress->set_value(p_step);
2014-02-10 02:10:30 +01:00
}
void BackgroundProgress::_end_task(const String &p_task) {
2014-02-10 02:10:30 +01:00
_THREAD_SAFE_METHOD_
ERR_FAIL_COND(!tasks.has(p_task));
Task &t = tasks[p_task];
2014-02-10 02:10:30 +01:00
memdelete(t.hb);
tasks.erase(p_task);
}
void BackgroundProgress::_bind_methods() {
2014-02-10 02:10:30 +01:00
ClassDB::bind_method("_add_task", &BackgroundProgress::_add_task);
ClassDB::bind_method("_task_step", &BackgroundProgress::_task_step);
ClassDB::bind_method("_end_task", &BackgroundProgress::_end_task);
ClassDB::bind_method("_update", &BackgroundProgress::_update);
2014-02-10 02:10:30 +01:00
}
void BackgroundProgress::add_task(const String &p_task, const String &p_label, int p_steps) {
2014-02-10 02:10:30 +01:00
MessageQueue::get_singleton()->push_call(this, "_add_task", p_task, p_label, p_steps);
2014-02-10 02:10:30 +01:00
}
void BackgroundProgress::task_step(const String &p_task, int p_step) {
2014-02-10 02:10:30 +01:00
//this code is weird, but it prevents deadlock.
bool no_updates;
{
_THREAD_SAFE_METHOD_
no_updates = updates.empty();
2014-02-10 02:10:30 +01:00
}
if (no_updates)
MessageQueue::get_singleton()->push_call(this, "_update");
2014-02-10 02:10:30 +01:00
{
_THREAD_SAFE_METHOD_
updates[p_task] = p_step;
2014-02-10 02:10:30 +01:00
}
}
void BackgroundProgress::end_task(const String &p_task) {
2014-02-10 02:10:30 +01:00
MessageQueue::get_singleton()->push_call(this, "_end_task", p_task);
2014-02-10 02:10:30 +01:00
}
////////////////////////////////////////////////
ProgressDialog *ProgressDialog::singleton = NULL;
2014-02-10 02:10:30 +01:00
void ProgressDialog::_notification(int p_what) {
switch (p_what) {
2014-02-10 02:10:30 +01:00
case NOTIFICATION_DRAW: {
Ref<StyleBox> style = get_stylebox("panel", "PopupMenu");
draw_style_box(style, Rect2(Point2(), get_size()));
2014-02-10 02:10:30 +01:00
} break;
}
}
void ProgressDialog::_popup() {
Size2 ms = main->get_combined_minimum_size();
ms.width = MAX(500 * EDSCALE, ms.width);
2014-02-10 02:10:30 +01:00
Ref<StyleBox> style = get_stylebox("panel", "PopupMenu");
ms += style->get_minimum_size();
main->set_margin(MARGIN_LEFT, style->get_margin(MARGIN_LEFT));
main->set_margin(MARGIN_RIGHT, -style->get_margin(MARGIN_RIGHT));
main->set_margin(MARGIN_TOP, style->get_margin(MARGIN_TOP));
main->set_margin(MARGIN_BOTTOM, -style->get_margin(MARGIN_BOTTOM));
2014-02-10 02:10:30 +01:00
popup_centered(ms);
}
void ProgressDialog::add_task(const String &p_task, const String &p_label, int p_steps) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(tasks.has(p_task));
Task t;
t.vb = memnew(VBoxContainer);
VBoxContainer *vb2 = memnew(VBoxContainer);
t.vb->add_margin_child(p_label, vb2);
t.progress = memnew(ProgressBar);
2014-02-10 02:10:30 +01:00
t.progress->set_max(p_steps);
t.progress->set_value(p_steps);
2014-02-10 02:10:30 +01:00
vb2->add_child(t.progress);
t.state = memnew(Label);
t.state->set_clip_text(true);
2014-02-10 02:10:30 +01:00
vb2->add_child(t.state);
main->add_child(t.vb);
tasks[p_task] = t;
2014-02-10 02:10:30 +01:00
_popup();
}
void ProgressDialog::task_step(const String &p_task, const String &p_state, int p_step, bool p_force_redraw) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(!tasks.has(p_task));
if (!p_force_redraw) {
uint64_t tus = OS::get_singleton()->get_ticks_usec();
if (tus - last_progress_tick < 50000) //50ms
return;
}
Task &t = tasks[p_task];
if (p_step < 0)
t.progress->set_value(t.progress->get_value() + 1);
2014-02-10 02:10:30 +01:00
else
t.progress->set_value(p_step);
2014-02-10 02:10:30 +01:00
t.state->set_text(p_state);
last_progress_tick = OS::get_singleton()->get_ticks_usec();
2014-02-10 02:10:30 +01:00
Main::iteration(); // this will not work on a lot of platforms, so it's only meant for the editor
}
void ProgressDialog::end_task(const String &p_task) {
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND(!tasks.has(p_task));
Task &t = tasks[p_task];
2014-02-10 02:10:30 +01:00
memdelete(t.vb);
tasks.erase(p_task);
if (tasks.empty())
hide();
else
_popup();
}
ProgressDialog::ProgressDialog() {
main = memnew(VBoxContainer);
2014-02-10 02:10:30 +01:00
add_child(main);
main->set_anchors_and_margins_preset(Control::PRESET_WIDE);
2014-02-10 02:10:30 +01:00
set_exclusive(true);
last_progress_tick = 0;
singleton = this;
2014-02-10 02:10:30 +01:00
}