2022-03-24 13:41:22 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
2015-07-26 11:16:05 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/time.h>
|
2022-03-24 13:41:22 +01:00
|
|
|
#include <unistd.h>
|
2015-07-26 11:16:05 +02:00
|
|
|
|
|
|
|
#include "debugger.h"
|
2022-03-24 13:41:22 +01:00
|
|
|
#include "hp48.h"
|
|
|
|
#include "x48_x11.h"
|
2015-07-26 11:16:05 +02:00
|
|
|
|
|
|
|
#include <langinfo.h>
|
|
|
|
#include <locale.h>
|
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
char* progname;
|
|
|
|
char* res_name;
|
|
|
|
char* res_class;
|
2015-07-26 11:16:05 +02:00
|
|
|
|
2022-03-24 13:41:22 +01:00
|
|
|
int saved_argc;
|
2023-04-27 12:15:59 +02:00
|
|
|
char** saved_argv;
|
2015-07-26 11:16:05 +02:00
|
|
|
|
|
|
|
saturn_t saturn;
|
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
void signal_handler( int sig ) {
|
|
|
|
switch ( sig ) {
|
|
|
|
case SIGINT:
|
|
|
|
enter_debugger |= USER_INTERRUPT;
|
|
|
|
break;
|
|
|
|
case SIGALRM:
|
|
|
|
got_alarm = 1;
|
|
|
|
break;
|
|
|
|
case SIGPIPE:
|
|
|
|
exit_x48( 0 );
|
|
|
|
exit( 0 );
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-07-26 11:16:05 +02:00
|
|
|
}
|
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
void save_options( int argc, char** argv ) {
|
|
|
|
int l;
|
|
|
|
|
|
|
|
saved_argc = argc;
|
|
|
|
saved_argv = ( char** )malloc( ( argc + 2 ) * sizeof( char* ) );
|
|
|
|
if ( saved_argv == ( char** )0 ) {
|
|
|
|
fprintf( stderr, "%s: malloc failed in save_options(), exit\n",
|
|
|
|
progname );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
saved_argv[ argc ] = ( char* )0;
|
|
|
|
while ( argc-- ) {
|
|
|
|
l = strlen( argv[ argc ] ) + 1;
|
|
|
|
saved_argv[ argc ] = ( char* )malloc( l );
|
|
|
|
if ( saved_argv[ argc ] == ( char* )0 ) {
|
|
|
|
fprintf( stderr, "%s: malloc failed in save_options(), exit\n",
|
|
|
|
progname );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
memcpy( saved_argv[ argc ], argv[ argc ], l );
|
2015-07-26 11:16:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
int main( int argc, char** argv ) {
|
2023-04-27 13:31:46 +02:00
|
|
|
// char* name;
|
2023-04-27 12:15:59 +02:00
|
|
|
sigset_t set;
|
|
|
|
struct sigaction sa;
|
|
|
|
long flags;
|
|
|
|
struct itimerval it;
|
|
|
|
|
|
|
|
setlocale( LC_ALL, "C" );
|
|
|
|
|
2023-04-27 13:31:46 +02:00
|
|
|
// name = ( char* )0;
|
2023-04-27 12:15:59 +02:00
|
|
|
/*
|
|
|
|
* Get the name we are called.
|
|
|
|
*/
|
|
|
|
progname = strrchr( argv[ 0 ], '/' );
|
|
|
|
if ( progname == NULL )
|
|
|
|
progname = argv[ 0 ];
|
|
|
|
else
|
|
|
|
progname++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* save command line options
|
|
|
|
*/
|
|
|
|
save_options( argc, argv );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open up the display
|
|
|
|
*/
|
|
|
|
if ( InitDisplay( argc, argv ) < 0 ) {
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize emulator stuff
|
|
|
|
*/
|
|
|
|
init_emulator();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the HP-48 window
|
|
|
|
*/
|
|
|
|
if ( CreateWindows( saved_argc, saved_argv ) < 0 ) {
|
|
|
|
fprintf( stderr, "%s: can\'t create window\n", progname );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* can't be done before windows exist
|
|
|
|
*/
|
|
|
|
init_active_stuff();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* install a handler for SIGALRM
|
|
|
|
*/
|
|
|
|
sigemptyset( &set );
|
|
|
|
sigaddset( &set, SIGALRM );
|
|
|
|
sa.sa_handler = signal_handler;
|
|
|
|
sa.sa_mask = set;
|
2015-07-26 11:16:05 +02:00
|
|
|
#ifdef SA_RESTART
|
2023-04-27 12:15:59 +02:00
|
|
|
sa.sa_flags = SA_RESTART;
|
2015-07-26 11:16:05 +02:00
|
|
|
#endif
|
2023-04-27 12:15:59 +02:00
|
|
|
sigaction( SIGALRM, &sa, ( struct sigaction* )0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* install a handler for SIGINT
|
|
|
|
*/
|
|
|
|
sigemptyset( &set );
|
|
|
|
sigaddset( &set, SIGINT );
|
|
|
|
sa.sa_handler = signal_handler;
|
|
|
|
sa.sa_mask = set;
|
2015-07-26 11:16:05 +02:00
|
|
|
#ifdef SA_RESTART
|
2023-04-27 12:15:59 +02:00
|
|
|
sa.sa_flags = SA_RESTART;
|
2015-07-26 11:16:05 +02:00
|
|
|
#endif
|
2023-04-27 12:15:59 +02:00
|
|
|
sigaction( SIGINT, &sa, ( struct sigaction* )0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* install a handler for SIGPIPE
|
|
|
|
*/
|
|
|
|
sigemptyset( &set );
|
|
|
|
sigaddset( &set, SIGPIPE );
|
|
|
|
sa.sa_handler = signal_handler;
|
|
|
|
sa.sa_mask = set;
|
2015-07-26 11:16:05 +02:00
|
|
|
#ifdef SA_RESTART
|
2023-04-27 12:15:59 +02:00
|
|
|
sa.sa_flags = SA_RESTART;
|
2015-07-26 11:16:05 +02:00
|
|
|
#endif
|
2023-04-27 12:15:59 +02:00
|
|
|
sigaction( SIGPIPE, &sa, ( struct sigaction* )0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set the real time interval timer
|
|
|
|
*/
|
|
|
|
it.it_interval.tv_sec = 0;
|
|
|
|
it.it_interval.tv_usec = 20000;
|
|
|
|
it.it_value.tv_sec = 0;
|
|
|
|
it.it_value.tv_usec = 20000;
|
|
|
|
setitimer( ITIMER_REAL, &it, ( struct itimerval* )0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set stdin flags to not include O_NDELAY and O_NONBLOCK
|
|
|
|
*/
|
|
|
|
flags = fcntl( STDIN_FILENO, F_GETFL, 0 );
|
|
|
|
flags &= ~O_NDELAY;
|
|
|
|
flags &= ~O_NONBLOCK;
|
|
|
|
fcntl( STDIN_FILENO, F_SETFL, flags );
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
|
|
|
if ( !exec_flags )
|
|
|
|
emulate();
|
|
|
|
else
|
|
|
|
emulate_debug();
|
2015-07-26 11:16:05 +02:00
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
debug();
|
2015-07-26 11:16:05 +02:00
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
} while ( 1 );
|
2015-07-26 11:16:05 +02:00
|
|
|
|
2023-04-27 12:15:59 +02:00
|
|
|
return 0;
|
2015-07-26 11:16:05 +02:00
|
|
|
}
|