summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/snapquik.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/snapquik.cpp')
-rw-r--r--src/devices/imagedev/snapquik.cpp57
1 files changed, 49 insertions, 8 deletions
diff --git a/src/devices/imagedev/snapquik.cpp b/src/devices/imagedev/snapquik.cpp
index 4ac355f6cf4..5c908dbcfef 100644
--- a/src/devices/imagedev/snapquik.cpp
+++ b/src/devices/imagedev/snapquik.cpp
@@ -11,8 +11,11 @@
#include "emu.h"
#include "snapquik.h"
+#include "softlist_dev.h"
+#include "ui/uimain.h"
+
// device type definition
-DEFINE_DEVICE_TYPE(SNAPSHOT, snapshot_image_device, "snapsot_image", "Snapshot")
+DEFINE_DEVICE_TYPE(SNAPSHOT, snapshot_image_device, "snapshot_image", "Snapshot")
//-------------------------------------------------
// snapshot_image_device - constructor
@@ -47,8 +50,28 @@ snapshot_image_device::~snapshot_image_device()
TIMER_CALLBACK_MEMBER(snapshot_image_device::process_snapshot_or_quickload)
{
- /* invoke the load */
- m_load(*this);
+ check_for_file();
+
+ // invoke the load (FIXME: better way to report errors?)
+ auto [err, message] = m_load(*this);
+ if (err)
+ {
+ osd_printf_error(
+ !message.empty()
+ ? "%1$s: Error loading '%2$s': %3$s (%4$s:%5$d %6$s)\n"
+ : "%1$s: Error loading '%2$s': %6$s (%4$s:%5$d)\n",
+ tag(),
+ basename(),
+ message,
+ err.category().name(),
+ err.value(),
+ err.message());
+ popmessage(
+ !message.empty() ? "Error loading '%1$s': %3$s" : "Error loading '%1$s': %4$s",
+ basename(),
+ message,
+ err.message());
+ }
}
//-------------------------------------------------
@@ -59,20 +82,38 @@ void snapshot_image_device::device_start()
{
m_load.resolve();
- /* allocate a timer */
- m_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(snapshot_image_device::process_snapshot_or_quickload),this));
+ // allocate a timer
+ m_timer = timer_alloc(FUNC(snapshot_image_device::process_snapshot_or_quickload), this);
}
/*-------------------------------------------------
call_load
-------------------------------------------------*/
-image_init_result snapshot_image_device::call_load()
+std::pair<std::error_condition, std::string> snapshot_image_device::call_load()
{
- /* adjust the timer */
+ // adjust the timer
m_timer->adjust(m_delay, 0);
- return image_init_result::PASS;
+ return std::make_pair(std::error_condition(), std::string());
+}
+
+const software_list_loader &snapshot_image_device::get_software_list_loader() const
+{
+ return image_software_list_loader::instance();
+}
+
+
+//-------------------------------------------------
+// show_message - used to display a message while
+// loading
+//-------------------------------------------------
+
+void snapshot_image_device::show_message(util::format_argument_pack<char> const &args)
+{
+ // display the popup for a standard amount of time
+ machine().ui().popup_time(5, "%s: %s", basename(), util::string_format(args));
}
+
// device type definition
DEFINE_DEVICE_TYPE(QUICKLOAD, quickload_image_device, "quickload", "Quickload")