core fading toggle
This commit is contained in:
parent
1a0a068b87
commit
a988f6a27d
2 changed files with 17 additions and 1 deletions
|
@ -8,11 +8,13 @@ bench_window::bench_window()
|
||||||
runner_stop_on_death(true),
|
runner_stop_on_death(true),
|
||||||
runner_stop_on_win(true),
|
runner_stop_on_win(true),
|
||||||
runner_hyperspeed(false),
|
runner_hyperspeed(false),
|
||||||
|
core_fading(true),
|
||||||
control_box(Gtk::Orientation::VERTICAL),
|
control_box(Gtk::Orientation::VERTICAL),
|
||||||
new_round_button("new round"),
|
new_round_button("new round"),
|
||||||
single_step_button("single step"),
|
single_step_button("single step"),
|
||||||
start_button("start"),
|
start_button("start"),
|
||||||
stop_button("stop"),
|
stop_button("stop"),
|
||||||
|
core_fading_toggle("core fading"),
|
||||||
hyperspeed_toggle("hyperspeed"),
|
hyperspeed_toggle("hyperspeed"),
|
||||||
pause_on_death_toggle("pause on death"),
|
pause_on_death_toggle("pause on death"),
|
||||||
pause_on_win_toggle("pause on win"),
|
pause_on_win_toggle("pause on win"),
|
||||||
|
@ -47,6 +49,7 @@ bench_window::bench_window()
|
||||||
|
|
||||||
update_ui();
|
update_ui();
|
||||||
|
|
||||||
|
core_fading_toggle.activate();
|
||||||
pause_on_death_toggle.activate();
|
pause_on_death_toggle.activate();
|
||||||
pause_on_win_toggle.activate();
|
pause_on_win_toggle.activate();
|
||||||
|
|
||||||
|
@ -57,6 +60,7 @@ bench_window::bench_window()
|
||||||
add_warrior_button.signal_clicked().connect(sigc::mem_fun(*this, &bench_window::on_click_add_warrior));
|
add_warrior_button.signal_clicked().connect(sigc::mem_fun(*this, &bench_window::on_click_add_warrior));
|
||||||
remove_warrior_button.signal_clicked().connect(sigc::mem_fun(*this, &bench_window::on_click_remove_warrior));
|
remove_warrior_button.signal_clicked().connect(sigc::mem_fun(*this, &bench_window::on_click_remove_warrior));
|
||||||
|
|
||||||
|
core_fading_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_core_fading));
|
||||||
hyperspeed_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_hyperspeed));
|
hyperspeed_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_hyperspeed));
|
||||||
pause_on_death_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_pause_on_death));
|
pause_on_death_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_pause_on_death));
|
||||||
pause_on_win_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_pause_on_win));
|
pause_on_win_toggle.signal_toggled().connect(sigc::mem_fun(*this, &bench_window::on_toggle_pause_on_win));
|
||||||
|
@ -70,6 +74,7 @@ bench_window::bench_window()
|
||||||
control_box.append(single_step_button);
|
control_box.append(single_step_button);
|
||||||
control_box.append(start_button);
|
control_box.append(start_button);
|
||||||
control_box.append(stop_button);
|
control_box.append(stop_button);
|
||||||
|
control_box.append(core_fading_toggle);
|
||||||
control_box.append(hyperspeed_toggle);
|
control_box.append(hyperspeed_toggle);
|
||||||
control_box.append(pause_on_death_toggle);
|
control_box.append(pause_on_death_toggle);
|
||||||
control_box.append(pause_on_win_toggle);
|
control_box.append(pause_on_win_toggle);
|
||||||
|
@ -118,10 +123,14 @@ const lib94::warrior *bench_window::do_step() {
|
||||||
const lib94::warrior *result = lib94::single_step<true>();
|
const lib94::warrior *result = lib94::single_step<true>();
|
||||||
|
|
||||||
core.mut.lock();
|
core.mut.lock();
|
||||||
core.age_all();
|
|
||||||
|
if (core_fading)
|
||||||
|
core.age_all();
|
||||||
|
|
||||||
core.add_new_writes(lib94::get_written_addresses());
|
core.add_new_writes(lib94::get_written_addresses());
|
||||||
core.add_new_reads(lib94::get_read_addresses());
|
core.add_new_reads(lib94::get_read_addresses());
|
||||||
core.add_new_executions(lib94::get_executed_addresses());
|
core.add_new_executions(lib94::get_executed_addresses());
|
||||||
|
|
||||||
core.mut.unlock();
|
core.mut.unlock();
|
||||||
|
|
||||||
add_modified_for_instruction_view(lib94::get_written_addresses());
|
add_modified_for_instruction_view(lib94::get_written_addresses());
|
||||||
|
@ -197,6 +206,10 @@ void bench_window::on_click_stop() {
|
||||||
runner_stop_now = true;
|
runner_stop_now = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void bench_window::on_toggle_core_fading() {
|
||||||
|
core_fading = core_fading_toggle.get_active();
|
||||||
|
}
|
||||||
|
|
||||||
void bench_window::on_toggle_hyperspeed() {
|
void bench_window::on_toggle_hyperspeed() {
|
||||||
runner_hyperspeed = hyperspeed_toggle.get_active();
|
runner_hyperspeed = hyperspeed_toggle.get_active();
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ public:
|
||||||
bool runner_stop_on_death;
|
bool runner_stop_on_death;
|
||||||
bool runner_stop_on_win;
|
bool runner_stop_on_win;
|
||||||
bool runner_hyperspeed;
|
bool runner_hyperspeed;
|
||||||
|
bool core_fading;
|
||||||
|
|
||||||
core_widget core;
|
core_widget core;
|
||||||
|
|
||||||
|
@ -71,6 +72,7 @@ private:
|
||||||
Gtk::Button start_button;
|
Gtk::Button start_button;
|
||||||
Gtk::Button stop_button;
|
Gtk::Button stop_button;
|
||||||
|
|
||||||
|
Gtk::CheckButton core_fading_toggle;
|
||||||
Gtk::CheckButton hyperspeed_toggle;
|
Gtk::CheckButton hyperspeed_toggle;
|
||||||
Gtk::CheckButton pause_on_death_toggle;
|
Gtk::CheckButton pause_on_death_toggle;
|
||||||
Gtk::CheckButton pause_on_win_toggle;
|
Gtk::CheckButton pause_on_win_toggle;
|
||||||
|
@ -94,6 +96,7 @@ private:
|
||||||
void on_click_start();
|
void on_click_start();
|
||||||
void on_click_stop();
|
void on_click_stop();
|
||||||
|
|
||||||
|
void on_toggle_core_fading();
|
||||||
void on_toggle_hyperspeed();
|
void on_toggle_hyperspeed();
|
||||||
void on_toggle_pause_on_death();
|
void on_toggle_pause_on_death();
|
||||||
void on_toggle_pause_on_win();
|
void on_toggle_pause_on_win();
|
||||||
|
|
Loading…
Add table
Reference in a new issue