1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
/* null_ui.c: Routines for dealing with the null user interface
Copyright (c) 2017 Philip Kendall
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include <config.h>
#include "keyboard.h"
#include "ui/ui.h"
#include "../uijoystick.c"
keysyms_map_t keysyms_map[] = {
{ 0, 0 } /* End marker */
};
scaler_type
menu_get_scaler( scaler_available_fn selector )
{
/* No scaler selected */
return SCALER_NUM;
}
int
menu_select_roms_with_title( const char *title, size_t start, size_t count,
int is_peripheral )
{
/* No error */
return 0;
}
void
ui_breakpoints_updated( void )
{
/* Do nothing */
}
ui_confirm_save_t
ui_confirm_save_specific( const char *message )
{
return UI_CONFIRM_SAVE_DONTSAVE;
}
ui_confirm_joystick_t
ui_confirm_joystick( libspectrum_joystick libspectrum_type, int inputs )
{
return UI_CONFIRM_JOYSTICK_NONE;
}
int
ui_debugger_activate( void )
{
/* No error */
return 0;
}
int
ui_debugger_deactivate( int interruptable )
{
/* No error */
return 0;
}
int
ui_debugger_disassemble( libspectrum_word addr )
{
/* No error */
return 0;
}
int
ui_debugger_update( void )
{
/* No error */
return 0;
}
int
ui_end( void )
{
/* No error */
return 0;
}
int
ui_error_specific( ui_error_level severity, const char *message )
{
/* No error */
return 0;
}
int
ui_event( void )
{
/* No error */
return 0;
}
char*
ui_get_open_filename( const char *title )
{
/* No filename */
return NULL;
}
int
ui_get_rollback_point( GSList *points )
{
/* No rollback point */
return -1;
}
char*
ui_get_save_filename( const char *title )
{
/* No filename */
return NULL;
}
int
ui_init( int *argc, char ***argv )
{
/* No error */
return 0;
}
int
ui_menu_item_set_active( const char *path, int active )
{
/* No error */
return 0;
}
int
ui_mouse_grab( int startup )
{
/* Successful grab */
return 1;
}
int
ui_mouse_release( int suspend )
{
/* No error */
return 0;
}
void
ui_pokemem_selector( const char *filename )
{
/* Do nothing */
}
int
ui_query( const char *message )
{
/* Query confirmed */
return 1;
}
int
ui_statusbar_update( ui_statusbar_item item, ui_statusbar_state state )
{
/* No error */
return 0;
}
int
ui_statusbar_update_speed( float speed )
{
/* No error */
return 0;
}
int
ui_tape_browser_update( ui_tape_browser_update_type change,
libspectrum_tape_block *block )
{
/* No error */
return 0;
}
int
ui_widgets_reset( void )
{
/* No error */
return 0;
}
void
uidisplay_area( int x, int y, int w, int h )
{
/* Do nothing */
}
int
uidisplay_end( void )
{
/* No error */
return 0;
}
void
uidisplay_frame_end( void )
{
/* Do nothing */
}
int
uidisplay_hotswap_gfx_mode( void )
{
/* No error */
return 0;
}
int
uidisplay_init( int width, int height )
{
/* No error */
return 0;
}
void
uidisplay_plot16( int x, int y, libspectrum_word data,
libspectrum_byte ink, libspectrum_byte paper )
{
/* Do nothing */
}
void
uidisplay_plot8( int x, int y, libspectrum_byte data,
libspectrum_byte ink, libspectrum_byte paper )
{
/* Do nothing */
}
void
uidisplay_putpixel( int x, int y, int colour )
{
/* Do nothing */
}
|