Previous 199869 Revisions Next

r36232 Wednesday 4th March, 2015 at 00:39:52 UTC by Couriersud
First step to move osd_printf_* into osd again. Callbacks are now
implemented using an interface and use a push/pop approach where the pop
can happen out of order of pushes. [Couriersud]
[src/emu]validity.c validity.h
[src/osd]osdcore.c osdcore.h
[src/osd/modules/lib]osdobj_common.c osdobj_common.h
[src/osd/windows]winmain.c

trunk/src/emu/validity.c
r244743r244744
199199   if (m_errors > 0 || m_warnings > 0)
200200   {
201201      astring tempstr;
202      output_via_delegate(m_saved_error_output, "Core: %d errors, %d warnings\n", m_errors, m_warnings);
202      output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Core: %d errors, %d warnings\n", m_errors, m_warnings);
203203      if (m_errors > 0)
204204      {
205205         m_error_text.replace("\n", "\n   ");
206         output_via_delegate(m_saved_error_output, "Errors:\n   %s", m_error_text.cstr());
206         output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Errors:\n   %s", m_error_text.cstr());
207207      }
208208      if (m_warnings > 0)
209209      {
210210         m_warning_text.replace("\n", "\n   ");
211         output_via_delegate(m_saved_error_output, "Warnings:\n   %s", m_warning_text.cstr());
211         output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Warnings:\n   %s", m_warning_text.cstr());
212212      }
213      output_via_delegate(m_saved_error_output, "\n");
213      output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "\n");
214214   }
215215
216216   // then iterate over all drivers and check them
r244743r244744
232232void validity_checker::validate_begin()
233233{
234234   // take over error and warning outputs
235   m_saved_error_output = osd_set_output_channel(OSD_OUTPUT_CHANNEL_ERROR, output_delegate(FUNC(validity_checker::error_output), this));
236   m_saved_warning_output = osd_set_output_channel(OSD_OUTPUT_CHANNEL_WARNING, output_delegate(FUNC(validity_checker::warning_output), this));
235   osd_output::push(this);
237236
238237   // reset all our maps
239238   m_names_map.reset();
r244743r244744
257256void validity_checker::validate_end()
258257{
259258   // restore the original output callbacks
260   osd_set_output_channel(OSD_OUTPUT_CHANNEL_ERROR, m_saved_error_output);
261   osd_set_output_channel(OSD_OUTPUT_CHANNEL_WARNING, m_saved_warning_output);
259   osd_output::pop(this);
262260}
263261
264262
r244743r244744
301299   if (m_errors > start_errors || m_warnings > start_warnings)
302300   {
303301      astring tempstr;
304      output_via_delegate(m_saved_error_output, "Driver %s (file %s): %d errors, %d warnings\n", driver.name, core_filename_extract_base(tempstr, driver.source_file).cstr(), m_errors - start_errors, m_warnings - start_warnings);
302      output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Driver %s (file %s): %d errors, %d warnings\n", driver.name, core_filename_extract_base(tempstr, driver.source_file).cstr(), m_errors - start_errors, m_warnings - start_warnings);
305303      if (m_errors > start_errors)
306304      {
307305         m_error_text.replace("\n", "\n   ");
308         output_via_delegate(m_saved_error_output, "Errors:\n   %s", m_error_text.cstr());
306         output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Errors:\n   %s", m_error_text.cstr());
309307      }
310308      if (m_warnings > start_warnings)
311309      {
312310         m_warning_text.replace("\n", "\n   ");
313         output_via_delegate(m_saved_error_output, "Warnings:\n   %s", m_warning_text.cstr());
311         output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "Warnings:\n   %s", m_warning_text.cstr());
314312      }
315      output_via_delegate(m_saved_error_output, "\n");
313      output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "\n");
316314   }
317315
318316   // reset the driver/device
r244743r244744
834832   // if we have a coin error, demonstrate the correct way
835833   if (coin_error)
836834   {
837      output_via_delegate(m_saved_error_output, "   Note proper coin sort order should be:\n");
835      output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "   Note proper coin sort order should be:\n");
838836      for (int entry = 0; entry < ARRAY_LENGTH(coin_list); entry++)
839837         if (coin_list[entry])
840            output_via_delegate(m_saved_error_output, "      %s\n", ioport_string_from_index(__input_string_coinage_start + entry));
838            output_via_delegate(OSD_OUTPUT_CHANNEL_ERROR, "      %s\n", ioport_string_from_index(__input_string_coinage_start + entry));
841839   }
842840}
843841
r244743r244744
10571055//  error_output - error message output override
10581056//-------------------------------------------------
10591057
1060void validity_checker::error_output(const char *format, va_list argptr)
1058void validity_checker::output_callback(osd_output_channel channel, const char *msg, va_list args)
10611059{
1062   // count the error
1063   m_errors++;
1064
1065   // output the source(driver) device 'tag'
10661060   astring output;
1067   build_output_prefix(output);
1061   switch (channel)
1062   {
1063      case OSD_OUTPUT_CHANNEL_ERROR:
1064         // count the error
1065         m_errors++;
10681066
1069   // generate the string
1070   output.catvprintf(format, argptr);
1071   m_error_text.cat(output);
1072}
1067         // output the source(driver) device 'tag'
1068         build_output_prefix(output);
10731069
1070         // generate the string
1071         output.catvprintf(msg, args);
1072         m_error_text.cat(output);
1073         break;
1074      case OSD_OUTPUT_CHANNEL_WARNING:
1075         // count the error
1076         m_warnings++;
10741077
1075//-------------------------------------------------
1076//  warning_output - warning message output
1077//  override
1078//-------------------------------------------------
1078         // output the source(driver) device 'tag'
1079         build_output_prefix(output);
10791080
1080void validity_checker::warning_output(const char *format, va_list argptr)
1081{
1082   // count the error
1083   m_warnings++;
1084
1085   // output the source(driver) device 'tag'
1086   astring output;
1087   build_output_prefix(output);
1088
1089   // generate the string and output to the original target
1090   output.catvprintf(format, argptr);
1091   m_warning_text.cat(output);
1081         // generate the string and output to the original target
1082         output.catvprintf(msg, args);
1083         m_warning_text.cat(output);
1084         break;
1085      default:
1086         chain_output(channel, msg, args);
1087         break;
1088   }
10921089}
10931090
1094
10951091//-------------------------------------------------
10961092//  output_via_delegate - helper to output a
10971093//  message via a varargs string, so the argptr
10981094//  can be forwarded onto the given delegate
10991095//-------------------------------------------------
11001096
1101void validity_checker::output_via_delegate(output_delegate &delegate, const char *format, ...)
1097void validity_checker::output_via_delegate(osd_output_channel channel, const char *format, ...)
11021098{
11031099   va_list argptr;
11041100
11051101   // call through to the delegate with the proper parameters
11061102   va_start(argptr, format);
1107   delegate(format, argptr);
1103   this->chain_output(channel, format, argptr);
11081104   va_end(argptr);
11091105}
trunk/src/emu/validity.h
r244743r244744
2626
2727
2828// core validity checker class
29class validity_checker
29class validity_checker : public osd_output
3030{
3131   // internal map types
3232   typedef tagmap_t<const game_driver *> game_driver_map;
r244743r244744
5252   // generic registry of already-checked stuff
5353   bool already_checked(const char *string) { return (m_already_checked.add(string, 1, false) == TMERR_DUPLICATE); }
5454
55   // osd_output interface
56
57protected:
58   virtual void output_callback(osd_output_channel channel, const char *msg, va_list args);
59
5560private:
5661   // internal helpers
5762   const char *ioport_string_from_index(UINT32 index);
r244743r244744
7580
7681   // output helpers
7782   void build_output_prefix(astring &string);
78   void error_output(const char *format, va_list argptr);
79   void warning_output(const char *format, va_list argptr);
80   void output_via_delegate(output_delegate &delegate, const char *format, ...) ATTR_PRINTF(3,4);
83   void output_via_delegate(osd_output_channel channel, const char *format, ...) ATTR_PRINTF(3,4);
8184
8285   // internal driver list
8386   driver_enumerator       m_drivlist;
r244743r244744
102105   int_map                 m_region_map;
103106   tagmap_t<UINT8>         m_already_checked;
104107
105   // callbacks
106   output_delegate         m_saved_error_output;
107   output_delegate         m_saved_warning_output;
108108};
109109
110110#endif
trunk/src/osd/modules/lib/osdobj_common.c
r244743r244744
133133//-------------------------------------------------
134134
135135osd_common_t::osd_common_t(osd_options &options)
136   : m_machine(NULL),
136   : osd_output(), m_machine(NULL),
137137      m_options(options),
138138      m_sound(NULL),
139139      m_debugger(NULL)
140{
141   osd_output::push(this);
142}
140143
144//-------------------------------------------------
145//  osd_interface - destructor
146//-------------------------------------------------
147
148osd_common_t::~osd_common_t()
141149{
150   for(int i= 0; i < m_video_names.count(); ++i)
151      osd_free(const_cast<char*>(m_video_names[i]));
152   //m_video_options,reset();
153   osd_output::pop(this);
142154}
143155
144156#define REGISTER_MODULE(_O, _X ) { extern const module_type _X; _O . register_module( _X ); }
r244743r244744
228240   m_options.set_description(key, core_strdup(current_value.cat(new_option_value).cstr()));
229241}
230242
243
231244//-------------------------------------------------
232//  osd_interface - destructor
245//  output_callback - callback for osd_printf_...
233246//-------------------------------------------------
234
235osd_common_t::~osd_common_t()
247void osd_common_t::output_callback(osd_output_channel channel, const char *msg, va_list args)
236248{
237   for(int i= 0; i < m_video_names.count(); ++i)
238      osd_free(const_cast<char*>(m_video_names[i]));
239   //m_video_options,reset();
249   switch (channel)
250   {
251      case OSD_OUTPUT_CHANNEL_ERROR:
252      case OSD_OUTPUT_CHANNEL_WARNING:
253         vfprintf(stderr, msg, args);
254         break;
255      case OSD_OUTPUT_CHANNEL_INFO:
256      case OSD_OUTPUT_CHANNEL_VERBOSE:
257      case OSD_OUTPUT_CHANNEL_LOG:
258         vfprintf(stdout, msg, args);
259         break;
260      case OSD_OUTPUT_CHANNEL_DEBUG:
261#ifdef MAME_DEBUG
262         vfprintf(stdout, msg, args);
263#endif
264         break;
265      default:
266         break;
267   }
240268}
241269
242
243270//-------------------------------------------------
244271//  init - initialize the OSD system.
245272//-------------------------------------------------
trunk/src/osd/modules/lib/osdobj_common.h
r244743r244744
140140// ======================> osd_interface
141141
142142// description of the currently-running machine
143class osd_common_t : public osd_interface
143class osd_common_t : public osd_interface, osd_output
144144{
145145public:
146146   // construction/destruction
r244743r244744
211211
212212   osd_options &options() { return m_options; }
213213
214   // osd_output interface ...
215   virtual void output_callback(osd_output_channel channel, const char *msg, va_list args);
216
214217protected:
215218   virtual bool input_init();
216219   virtual void input_pause();
trunk/src/osd/osdcore.c
r244743r244744
33
44bool g_print_verbose = false;
55
6static const int MAXSTACK = 10;
7static osd_output *m_stack[MAXSTACK];
8static int m_ptr = -1;
69
710/*-------------------------------------------------
8    osd_file_output_callback - default callback
9    for file output
11    osd_output
1012-------------------------------------------------*/
1113
12void osd_file_output_callback(FILE *param, const char *format, va_list argptr)
14void osd_output::push(osd_output *delegate)
1315{
14   vfprintf(param, format, argptr);
16   assert(m_ptr < MAXSTACK);
17   delegate->m_chain = (m_ptr >= 0 ? m_stack[m_ptr] : NULL);
18   m_ptr++;
19   m_stack[m_ptr] = delegate;
20   //printf("push m_ptr == %d\n", m_ptr);
1521}
1622
17
18/*-------------------------------------------------
19    osd_null_output_callback - default callback
20    for no output
21-------------------------------------------------*/
22
23void osd_null_output_callback(FILE *param, const char *format, va_list argptr)
23void osd_output::pop(osd_output *delegate)
2424{
25   int f = -1;
26   for (int i=0; i<=m_ptr; i++)
27      if (m_stack[i] == delegate)
28      {
29         f = i;
30         break;
31      }
32   if (f >= 0)
33   {
34      if (f < m_ptr)
35         m_stack[f+1]->m_chain = m_stack[f]->m_chain;
36      m_ptr--;
37      for (int i = f; i <= m_ptr; i++)
38         m_stack[i] = m_stack[i+1];
39   }
40   //printf("pop m_ptr == %d\n", m_ptr);
2541}
2642
2743
28
29/* output channels */
30static output_delegate output_cb[OSD_OUTPUT_CHANNEL_COUNT] =
31{
32   output_delegate(FUNC(osd_file_output_callback), stderr),   // OSD_OUTPUT_CHANNEL_ERROR
33   output_delegate(FUNC(osd_file_output_callback), stderr),   // OSD_OUTPUT_CHANNEL_WARNING
34   output_delegate(FUNC(osd_file_output_callback), stdout),   // OSD_OUTPUT_CHANNEL_INFO
35#ifdef MAME_DEBUG
36   output_delegate(FUNC(osd_file_output_callback), stdout),   // OSD_OUTPUT_CHANNEL_DEBUG
37#else
38   output_delegate(FUNC(osd_null_output_callback), stdout),   // OSD_OUTPUT_CHANNEL_DEBUG
39#endif
40   output_delegate(FUNC(osd_file_output_callback), stdout),   // OSD_OUTPUT_CHANNEL_VERBOSE
41   output_delegate(FUNC(osd_file_output_callback), stdout)    // OSD_OUTPUT_CHANNEL_LOG
42};
43
44
4544/***************************************************************************
4645    OUTPUT MANAGEMENT
4746***************************************************************************/
4847
4948/*-------------------------------------------------
50    osd_set_output_channel - configure an output
51    channel
52-------------------------------------------------*/
53
54output_delegate osd_set_output_channel(output_channel channel, output_delegate callback)
55{
56   if (!(channel < OSD_OUTPUT_CHANNEL_COUNT) || callback.isnull())
57   {
58      throw std::exception();
59   }
60
61   /* return the originals if requested */
62   output_delegate prevcb = output_cb[channel];
63
64   /* set the new ones */
65   output_cb[channel] = callback;
66   return prevcb;
67}
68
69/*-------------------------------------------------
7049    osd_printf_error - output an error to the
7150    appropriate callback
7251-------------------------------------------------*/
r244743r244744
7756
7857   /* do the output */
7958   va_start(argptr, format);
80   output_cb[OSD_OUTPUT_CHANNEL_ERROR](format, argptr);
59   if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_ERROR, format, argptr);
8160   va_end(argptr);
8261}
8362
r244743r244744
9372
9473   /* do the output */
9574   va_start(argptr, format);
96   output_cb[OSD_OUTPUT_CHANNEL_WARNING](format, argptr);
75   if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_WARNING, format, argptr);
9776   va_end(argptr);
9877}
9978
r244743r244744
10988
11089   /* do the output */
11190   va_start(argptr, format);
112   output_cb[OSD_OUTPUT_CHANNEL_INFO](format, argptr);
91   if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_INFO, format, argptr);
11392   va_end(argptr);
11493}
11594
r244743r244744
129108
130109   /* do the output */
131110   va_start(argptr, format);
132   output_cb[OSD_OUTPUT_CHANNEL_VERBOSE](format, argptr);
111   if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_VERBOSE, format, argptr);
133112   va_end(argptr);
134113}
135114
r244743r244744
145124
146125   /* do the output */
147126   va_start(argptr, format);
148   output_cb[OSD_OUTPUT_CHANNEL_DEBUG](format, argptr);
127   if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_DEBUG, format, argptr);
149128   va_end(argptr);
150129}
151130
trunk/src/osd/osdcore.h
r244743r244744
2020#define __OSDCORE_H__
2121
2222#include "osdcomm.h"
23#include "delegate.h"
2423#include <stdarg.h>
2524
2625/***************************************************************************
r244743r244744
926925/* ----- output management ----- */
927926
928927// output channels
929enum output_channel
928enum osd_output_channel
930929{
931930   OSD_OUTPUT_CHANNEL_ERROR,
932931   OSD_OUTPUT_CHANNEL_WARNING,
r244743r244744
937936   OSD_OUTPUT_CHANNEL_COUNT
938937};
939938
940// output channel callback
941typedef delegate<void (const char *, va_list)> output_delegate;
939class osd_output
940{
941public:
942   osd_output() : m_chain(NULL) { }
943   virtual ~osd_output() { }
942944
943/* set the output handler for a channel, returns the current one */
944output_delegate osd_set_output_channel(output_channel channel, output_delegate callback);
945   virtual void output_callback(osd_output_channel channel, const char *msg, va_list args) = 0;
945946
947   static void push(osd_output *delegate);
948   static void pop(osd_output *delegate);
949protected:
950
951   void chain_output(osd_output_channel channel, const char *msg, va_list args)
952   {
953      if (m_chain != NULL)
954         m_chain->output_callback(channel, msg, args);
955   }
956private:
957   osd_output *m_chain;
958};
959
946960/* calls to be used by the code */
947961void CLIB_DECL osd_printf_error(const char *format, ...) ATTR_PRINTF(1,2);
948962void CLIB_DECL osd_printf_warning(const char *format, ...) ATTR_PRINTF(1,2);
trunk/src/osd/windows/winmain.c
r244743r244744
198198   FPTR *          m_buffer_end;
199199};
200200
201//============================================================
202//  winui_output_error
203//============================================================
201204
205class winui_output_error : public osd_output
206{
207public:
208   virtual void output_callback(osd_output_channel channel, const char *msg, va_list args)
209   {
210      if (channel == OSD_OUTPUT_CHANNEL_ERROR)
211      {
212         char buffer[1024];
202213
214         // if we are in fullscreen mode, go to windowed mode
215         if ((video_config.windowed == 0) && (win_window_list != NULL))
216            winwindow_toggle_full_screen();
203217
218         vsnprintf(buffer, ARRAY_LENGTH(buffer), msg, args);
219         win_message_box_utf8(win_window_list ? win_window_list->m_hwnd : NULL, buffer, emulator_info::get_appname(), MB_OK);
220      }
221      else
222         chain_output(channel, msg, args);
223   }
224};
225
226
227
228
204229//**************************************************************************
205230//  GLOBAL VARIABLES
206231//**************************************************************************
r244743r244744
237262static int is_double_click_start(int argc);
238263static DWORD WINAPI watchdog_thread_entry(LPVOID lpParameter);
239264static LONG WINAPI exception_filter(struct _EXCEPTION_POINTERS *info);
240static void winui_output_error(delegate_late_bind *__dummy, const char *format, va_list argptr);
241265
242266
243267
r244743r244744
391415   extern void (*s_debugger_stack_crawler)();
392416   s_debugger_stack_crawler = winmain_dump_stack;
393417
394   // if we're a GUI app, out errors to message boxes
395   if (win_is_gui_application() || is_double_click_start(argc))
396   {
397      // if we are a GUI app, output errors to message boxes
398      osd_set_output_channel(OSD_OUTPUT_CHANNEL_ERROR, output_delegate(FUNC(winui_output_error), (delegate_late_bind *)0));
399418
400      // make sure any console window that opened on our behalf is nuked
401      FreeConsole();
402   }
403
404419   // parse config and cmdline options
405420   DWORD result = 0;
406421   {
407422      windows_options options;
408423      windows_osd_interface osd(options);
424      // if we're a GUI app, out errors to message boxes
425      // Initialize this after the osd interface so that we are first in the
426      // output order
427      winui_output_error winerror;
428      if (win_is_gui_application() || is_double_click_start(argc))
429      {
430         // if we are a GUI app, output errors to message boxes
431         osd_output::push(&winerror);
432         // make sure any console window that opened on our behalf is nuked
433         FreeConsole();
434      }
409435      osd.register_options();
410436      cli_frontend frontend(options, osd);
411437      result = frontend.execute(argc, argv);
438      osd_output::pop(&winerror);
412439   }
413440   // free symbols
414441   symbols = NULL;
r244743r244744
464491}
465492
466493
467//============================================================
468//  winui_output_error
469//============================================================
470494
471static void winui_output_error(delegate_late_bind *param, const char *format, va_list argptr)
472{
473   char buffer[1024];
474495
475   // if we are in fullscreen mode, go to windowed mode
476   if ((video_config.windowed == 0) && (win_window_list != NULL))
477      winwindow_toggle_full_screen();
478
479   vsnprintf(buffer, ARRAY_LENGTH(buffer), format, argptr);
480   win_message_box_utf8(win_window_list ? win_window_list->m_hwnd : NULL, buffer, emulator_info::get_appname(), MB_OK);
481}
482
483
484
485496//============================================================
486497//  output_oslog
487498//============================================================


Previous 199869 Revisions Next


© 1997-2024 The MAME Team