X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tclmain.c;h=c782cf45b73234e7ad8be6de1fe5c7d25819dcf2;hb=5ab718625d35ca64c34d9962427feeaaa1b00086;hp=203d8aa2923e8d0186860abfa1cb0a79bdc5e125;hpb=075ab693cfc579ae9dbefd78d32d852e7b18d306;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index 203d8aa..c782cf4 100644 --- a/tclmain.c +++ b/tclmain.c @@ -2,15 +2,27 @@ * IR toolkit for tcl/tk * (c) Index Data 1995 * - * $Id: tclmain.c,v 1.1 1995-03-06 17:05:34 adam Exp $ + * $Log: tclmain.c,v $ + * Revision 1.4 1995-03-17 07:50:31 adam + * Headers have changed a little. + * */ +#include +#include +#include +#include + #include #include "ir-tcl.h" static char *fileName = NULL; +static fd_set fdset_tcl; + +void tcl_mainloop (Tcl_Interp *interp); + int Tcl_AppInit (Tcl_Interp *interp) { if (Tcl_Init(interp) == TCL_ERROR) @@ -26,26 +38,94 @@ int main (int argc, char **argv) int code; interp = Tcl_CreateInterp(); + Tcl_SetVar (interp, "tcl_interactive", "0", TCL_GLOBAL_ONLY); + if (argc == 2) + fileName = argv[1]; - if (argc != 2) - { - fprintf (stderr, "Script file expected\n"); - exit (1); + if (Tcl_AppInit(interp) != TCL_OK) { + fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); } - fileName = argv[1]; - if (fileName == NULL) + if (fileName) { - fprintf (stderr, "No filename specified\n"); - exit (1); + code = Tcl_EvalFile (interp, fileName); + if (*interp->result != 0) + printf ("%s\n", interp->result); + if (code != TCL_OK) + exit (1); } - if (Tcl_AppInit(interp) != TCL_OK) { - fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); - } - code = Tcl_EvalFile (interp, fileName); - if (*interp->result != 0) - printf ("%s\n", interp->result); - if (code != TCL_OK) - exit (1); + Tcl_SetVar (interp, "tcl_interactive", "1", TCL_GLOBAL_ONLY); + tcl_mainloop (interp); exit (0); } +struct callback { + void (*handle)(void *p); + void *obj; +}; + +#define MAX_CALLBACK 20 + +struct callback callback_table[MAX_CALLBACK]; + +void tcl_mainloop (Tcl_Interp *interp) +{ + int i; + int res; + int count; + char input_buf[256]; + Tcl_DString command; + + for (i=0; iresult); + else + printf ("[RES:%s]\n", interp->result); + printf ("[TCL]"); fflush (stdout); + } + } + } +} + +void ir_select_add (int fd, void *obj) +{ + callback_table[fd].obj = obj; + callback_table[fd].handle = ir_select_proc; +} + +void ir_select_remove (int fd, void *obj) +{ + callback_table[fd].handle = NULL; +}