[gnome-games/wip/exalm/runner-refactor: 49/58] retro-runner: Merge instantiate_core() into prepare_core()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/exalm/runner-refactor: 49/58] retro-runner: Merge instantiate_core() into prepare_core()
- Date: Sun, 8 Mar 2020 13:44:53 +0000 (UTC)
commit 659b17233c691f652fbba91c98a5742b280c1d52
Author: Alexander Mikhaylenko <alexm gnome org>
Date: Sat Mar 7 03:32:09 2020 +0500
retro-runner: Merge instantiate_core() into prepare_core()
src/retro/retro-runner.vala | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
---
diff --git a/src/retro/retro-runner.vala b/src/retro/retro-runner.vala
index f48217fb..5efbb62c 100644
--- a/src/retro/retro-runner.vala
+++ b/src/retro/retro-runner.vala
@@ -142,6 +142,7 @@ public class Games.RetroRunner : Object, Runner {
}
else
module_path = core_source.get_module_path ();
+
core = new Retro.Core (module_path);
var options_path = get_options_path ();
@@ -160,6 +161,12 @@ public class Games.RetroRunner : Object, Runner {
core.save_directory = tmp_save_dir;
core.log.connect (Retro.g_log);
+ core.shutdown.connect (stop);
+ core.crashed.connect ((core, error) => {
+ is_error = true;
+ crash (error);
+ });
+
view.set_core (core);
string[] medias_uris = {};
@@ -173,21 +180,11 @@ public class Games.RetroRunner : Object, Runner {
if (medias_uris.length > 0)
core.set_current_media (media_set.selected_media_number);
- }
-
- private void instantiate_core () throws Error {
- prepare_core ();
input_manager = new RetroInputManager (core, view);
// Keep the internal values of input_mode in sync between RetroRunner and RetroInputManager
input_mode = get_available_input_modes ()[0];
- core.shutdown.connect (stop);
- core.crashed.connect ((core, error) => {
- is_error = true;
- crash (error);
- });
-
running = false;
core_loaded = true;
@@ -203,7 +200,7 @@ public class Games.RetroRunner : Object, Runner {
if (latest_savestate != null)
latest_savestate.copy_save_dir_to (tmp_save_dir);
- instantiate_core ();
+ prepare_core ();
reset_metadata (latest_savestate);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]