/* Copyright INRIA/ENPC */
/***********************************************************************
 * zzledt.c - line editing routine
 * Initial Version : Copyright (c) Mitchell and Gauthier assoc, inc 1993
 * Modified by Jean Philippe Chancelier (ENPC) and Serge Steer (INRIA) 
 *  - Console (xterm) and Scilab window mode handled, 
 *    used in Console mode for GTK
 *  - Interruption for Scilab menu execution
 *  - History functions changed to use linked lists
 **********************************************************************/
#include "../machine.h" 

static char Sci_Prompt[10];

#ifdef WITH_GTK
#ifdef WITH_READLINE 
/* this file is unused */ 
#define WITHOUT_STD_ZZLEDT
#endif 
#endif 

#ifndef WITHOUT_STD_ZZLEDT /* the gtk readline version is in gtk */ 
#ifndef WIN32 /** The win32 version is defined in the wsci directory **/
#include <string.h>
#include <signal.h> /* for SIGINT */

#ifdef __STDC__
#include <stdlib.h>
#include <unistd.h>
#endif
#include <sys/ioctl.h>

#ifdef aix
#define ATTUNIX
#endif
#ifdef aix370
#define ATTUNIX
#endif
#ifdef cdcu
#define ATTUNIX
#endif
#ifdef cray
#define B42UNIX
#endif
#ifdef hpux
#define ATTUNIX
#endif
#ifdef sgi
#define ATTUNIX
#endif
#ifdef sun
#define ATTUNIX
#define TERMCAP
#endif
#ifdef ultrix
#define B42UNIX
#define TERMCAP
#endif
#if !defined(linux) && !defined(netbsd) && !defined(freebsd)
#ifdef  __alpha
#define B42UNIX
#endif
#endif
#ifdef linux
#define ATTUNIX
#define TERMCAP
#endif
#if defined(netbsd) || defined(freebsd)
#define TERMCAP
#endif

#include <stdio.h>
#include <ctype.h>
#include "../machine.h"

#ifndef HAVE_TERMCAP
#undef TERMCAP
#endif

#ifdef B42UNIX
#define KEYPAD 
#include <sys/file.h>
#include <sgtty.h>
static short save_sg_flags;
static struct sgttyb arg;
static struct tchars arg1;
#endif

#ifdef ATTUNIX
#define KEYPAD 
#include <termio.h>
static struct termio save_term;
static struct termio arg;
#endif

#ifndef MAX
#define MAX(a, b) (a > b ? a : b)
#endif

#define EXCL                  0x0021
#define UP_ARROW              0x0148
#define DOWN_ARROW            0x0150
#define LEFT_ARROW            0x014b
#define RIGHT_ARROW           0x014d
#define SEARCH_BACKWARD       0x015e
#define SEARCH_FORWARD        0x0160
#define HOME                  0x0001  /* control-A */
#define ENDS                  0x0005  /* control-E */
#define LDEL                  0x0015  /* control-U */
#define INS                   0x0014  /* control-T */
#define DEL                   0x007f
#define BS                    0x0008  /* control-H */
#define CR                    0x000d
#define LF                    0x000a
#define BEL                   0x0007
#define CTRL_B                0x0002  /* back a character */
#define CTRL_C                0x0003  /* redo line */
#define CTRL_D                0x0004  /* delete next char */
#define CTRL_F                0x0006  /* forward a character */
#define CTRL_K                0x000b  /* delete to end of line */
#define CTRL_L                0x000c  /* delete to end of line */
#define CTRL_N                0x000e  /* next line */
#define CTRL_P                0x0010  /* previous line */
#define CTRL_Y                0x0019  /* paste */
#define CTRL_Z                0x0020  /* stop */
#define CASE_PRINT            63      /* from x_VTparse.h */


#define NUL '\0'
#define TRUE 1
#define FALSE 0
#define TAB_SKIP 8
#define NO_SAVED_LINES 100
#define WK_BUF_SIZE 520
#define SV_BUF_SIZE 5000


#define N_SEQS       6      /* number of special sequences */
#define MAX_SEQ_LEN  10     /* max chars in special termcap seqs */
#define ESC          0x01b
/* declare and define initial sequences. They
 * may be overwritten by termcap entries */
static char seqs[N_SEQS][MAX_SEQ_LEN] = {
  { 0x1b, 0x5b, 0x41, 0x00 },   /* up arrow */
  { 0x1b, 0x5b, 0x42, 0x00 },   /* down arrow */
  { 0x1b, 0x5b, 0x44, 0x00 },   /* left arrow */
  { 0x1b, 0x5b, 0x43, 0x00 },    /* right arrow */
  { 0x1b, 0x3c, 0x00, 0x00 },   /* search backward*/
  { 0x1b, 0x3e, 0x00, 0x00 }    /* search forward */
};
static int key_map[] = {UP_ARROW, DOWN_ARROW, LEFT_ARROW, RIGHT_ARROW, SEARCH_BACKWARD, SEARCH_FORWARD};


static char yank_buf[WK_BUF_SIZE + 1];/* yank buffer for copy/paste */
static char tosearch[SV_BUF_SIZE] = "";/* place to store search string */
static int insert_flag = 1; /*insertion mode */
static int modeX; /* Window or Console mode */
/* --- locally defined functions ---  */
static void move_right(char *source, int max_chars);
static void move_left(char *source);
static void display_string(char *string);
static void backspace(int n);
static void erase_nchar(int n);
static int  gchar_no_echo(int interrupt);
static int  CopyCurrentHist(char *wk_buf,int *cursor,int *cursor_max);
static void strip_blank();
static int  translate(int ichar);
static void PutChar(int c);
static int  GetCharOrEvent(int interrupt);

/* function for console mode */
static void enable_keypad_mode(), disable_keypad_mode();
static void init_io(), set_cbreak(), set_crmod();

/* --- extern functions ---  */
extern void set_echo_mode(int mode);
extern void set_is_reading(int mode);
extern int  get_echo_mode();
extern void sciprint_nd(char *fmt,...);
extern void C2F(sigbas)(int *n);
extern void XHomeFunction(void);
extern int XClearScreenConsole(char *fname);

/*history functions*/
#include "history.h" 

/*end history functions*/

#ifndef WITH_GTK
extern int  XEvorgetchar(int interrupt);  
extern void Xputchar(int c);  
#endif
extern int  Xorgetchar(int interrupt);
/* --- End extern functions ---  */

/*  ---- interruption handling ---*/
static char wk_buf_save[WK_BUF_SIZE + 1];
static int cursor_save=0;
static int cursor_max_save=0;
static int interrupted=0;
/*  ---- end of interruption handling ---*/

static int sendprompt=1;
/*static char Sci_Prompt[10];*/

extern int groundtable[]; /* character table */ 

/*-------------- Declarations  specific for console mode    -----------------  */
static int init_flag = TRUE;
static int tty;


static int cbreak_crmod = 1;/* crmod on */
static int fd=0;            /* file number for standard in */

#ifdef TERMCAP
/* termcap capability string for arrow up,down, left, and right */
static char *tc_capabilities[] = { "ku", "kd", "kl", "kr", "" };
static char strings[128];   /* place to store output strings from termcap file */
static char *KS=NULL;            /* enable keypad */
static char *KE=NULL;            /* disable keypad */
static char *CE=NULL;            /* clear to end of line */
static char *BC=NULL;            /* backspace */
static char *IM=NULL;            /* start insert mode */
static char *IC=NULL;            /* insert character */
static char *EI=NULL;            /* end insert mode */
static char *CL=NULL;            /* clear screen */
#endif

extern int GetSaveHistoryAfterNcommands(void);
extern char * getfilenamehistory(void);
extern void write_history(char *filename);

int NumberOfCommands=0;

/*-------------- End of Declarations  specific for console mode-----------------  */

/***********************************************************************
 * line editor
 **********************************************************************/

extern void C2F(zzledt)(char *buffer,int *buf_size,int *len_line,int * eof,
			int *menusflag,int * modex,long int dummy1)
{
  int cursor_max = 0;
  int cursor = 0;
  int yank_len,i;

  int keystroke;
  int character_count;
  char wk_buf[WK_BUF_SIZE + 1];
#ifndef WITH_GTK
  modeX=*modex;
#else
  modeX=0;
#endif
  if(!modeX) {
    if(init_flag) {
      init_io();
      init_flag = FALSE;
    }
    
    if(!tty) { /* if not an interactive terminal */
      /* read a line into the buffer, but not too
       * big */
      fputs("-->",stdout);
      *eof = (fgets(buffer, *buf_size, stdin) == NULL);
      *len_line = strlen(buffer);
      /* remove newline character if there */
      if(buffer[*len_line - 1] == '\n')
	(*len_line)--;
      return;
    }
  }

  if (interrupted) {
    /* restore the state */
    interrupted=0;
    strcpy(wk_buf,wk_buf_save);
    cursor=cursor_save;cursor_save=0;
    cursor_max=cursor_max_save;cursor_max_save=0;
  }
  else
    wk_buf[0] = NUL; /* initialize empty  buffer */

  if(!modeX) {
#ifdef KEYPAD 
    set_cbreak();
    enable_keypad_mode();
#endif
    if(sendprompt) printf(Sci_Prompt);/* write prompt */
  }
  else {
    if(sendprompt) sciprint_nd(Sci_Prompt);/* write prompt */
  }

  sendprompt=1;
  set_is_reading(TRUE); /* did not exist in old gtk version */
        
                    
  while(1) {  /* main loop to read keyboard input */
    /* get next keystroke (no echo) returns -1 if interrupted */
    keystroke = gchar_no_echo(*menusflag);

    if (keystroke==-1) {
      /* preserve the state */
      interrupted=1;
      strcpy(wk_buf_save,wk_buf);
      cursor_save=cursor;
      cursor_max_save=cursor_max;
      sendprompt=0;
      *eof=-1;
      return;
    }

    if ( keystroke ==  CTRL_C ) /* did not exist in old gtk version */
      {
	int j = SIGINT;
	C2F(sigbas)(&j);
	keystroke = '\n';
      };

    /* check for ascii extended characters */
    if( ( iscntrl(keystroke) && groundtable[keystroke] != CASE_PRINT)
	|| keystroke > 0x0100 )
      {
	/* stroke is line editing command */
	switch(keystroke) {
	case UP_ARROW: /* move one line up if any in history */
	case CTRL_P:
	  if (history != NULL) {
	    if (cur_entry == NULL) {
	      cur_entry = history;
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	    }
	    else if (cur_entry->prev != NULL) {
	      cur_entry = cur_entry->prev;
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	    }
	  }
	  break;
	case DOWN_ARROW:  /* move one line down if any in history */
	case CTRL_N:
	  if (cur_entry != NULL) {
	    cur_entry = cur_entry->next;

	    /* To get a empty line when no more data in history */
	    backspace(cursor);
	    erase_nchar(cursor_max);
	    wk_buf[0] = NUL;
	    cursor = cursor_max = 0;

	    if (cur_entry != NULL) {
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	    }
	  }
	  break;
	case LEFT_ARROW:/* move left*/
	case CTRL_B:
	  if(cursor > 0) {/* is there room to move left */
	    cursor--;
	    backspace(1);
	  }
	  else {
	    PutChar(BEL); /* au lieu de XPutChar(BEL);*/
	  }
	  break;
	case RIGHT_ARROW: /* move right*/
	case CTRL_F:
	  if(cursor < cursor_max) {/* is there room to move right */
	    PutChar(wk_buf[cursor++]);
	  }
	  else {
	    PutChar(BEL);
	  }
	  break;

	case HOME:
	  backspace(cursor); /* move to beginning of the line */
	  cursor = 0;
	  break;

	case ENDS:  /* move to end of line */
	  while(cursor < cursor_max) {
	    PutChar(wk_buf[cursor++]);
	  }
	  break;

	case INS: /* toggle insert/overwrite flag */
	  insert_flag = !insert_flag;
	  break;
		    
	case CTRL_C: /** we never get there CTRL_C is explored above **/
	  {
	    int j = SIGINT;
	    C2F(sigbas)(&j);
	  };
	  break;
	   
	case CTRL_D: /* delete next character*/
	  if(cursor == cursor_max) {
	    /* reminder that backing up over edge */
	    PutChar(BEL);
	    break;
	  }
	  move_left(&wk_buf[cursor]);
	  cursor_max--;
	  /* and write rest of line to end */
	  display_string(&wk_buf[cursor]);
	  /* erase extra character now at end. */
	  erase_nchar(1);
	  /* backspace to proper cursor position */
	  backspace(cursor_max - cursor);
	  break;

	case DEL: /* backspace with delete */
	case BS:
	  if(cursor == 0) {
	    /* reminder that backing up over edge */
	    PutChar(BEL);
	    break;
	  }
	  /* move string in work, one left from cursor */
	  move_left(&wk_buf[cursor - 1]);
	  cursor_max--;
	  cursor--;
	  backspace(1);
	  /* and write rest of line to end */
	  display_string(&wk_buf[cursor]);
	  /* erase extra character now at end. */
	  erase_nchar(1);
	  /* backspace to proper cursor position */
	  backspace(cursor_max - cursor);
	  break;

	case CTRL_K: /* delete to end of line */ 
	  if(cursor == cursor_max) {
	    /* reminder that backing up over edge */
	    PutChar(BEL);
	    break;
	  }
	  /* erase  character  at end. */
	  erase_nchar(cursor_max - cursor);
	  /* store cutted part in tyank buffer*/
	  strcpy(yank_buf,&wk_buf[cursor]);
	  /* backspace to proper cursor position */
	  wk_buf[cursor] = NUL;
	  cursor_max = cursor;
	  break;

	case CTRL_Y: /* Paste at the current point */
	  yank_len=strlen(yank_buf);
	  if(yank_len!=0 ){
	    if (cursor==cursor_max) {
	      strcpy(&wk_buf[cursor],yank_buf);
	      display_string(&wk_buf[cursor]);
	      cursor = cursor_max + yank_len;
	      cursor_max = cursor;

	    }
	    else {
	      for(i = 0; i <= cursor_max-cursor; i++)
		wk_buf[cursor_max+yank_len-i]=wk_buf[cursor_max-i];
	      wk_buf[cursor_max+yank_len]=NUL;
	      strncpy(&wk_buf[cursor],yank_buf,yank_len);
	      erase_nchar(cursor_max - cursor);
	      display_string(&wk_buf[cursor]);
	      backspace(cursor_max-cursor);
	      cursor_max=cursor_max+yank_len;
	      cursor=cursor+yank_len;
	    }

	  }
	  break;
	case CTRL_Z:
	  break;

	case CTRL_L:
	  if(modeX) {
	    PutChar(CTRL_L);
	    wk_buf[0]=NUL;
	    goto exit;
	  }
	  else {
#ifdef TERMCAP
	    fputs(CL,stdout);
	    wk_buf[0]=NUL;
	    goto exit;
#else
	    PutChar(BEL);
	    break;
#endif
	  }

	case LDEL: /* clear line buffer */
	  backspace(cursor);
	  erase_nchar(cursor_max);
	  wk_buf[0] = NUL;
	  cursor = cursor_max = 0;
	  break;

	case CR: /* carrage return indicates line is ok;*/
	case LF:
	  strip_blank(wk_buf);/* first strip any trailing blanks */
	  if (wk_buf[0]==EXCL) { /* search backward */
	    strcpy(tosearch,wk_buf); /* memorise search key for further use */
	    cur_entry=SearchBackwardInHistory(tosearch+1);
	    if(cur_entry == NULL) {
	      PutChar(BEL);
	    }
	    else {
	      research_knot_last=cur_entry;
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	      AddHistory(wk_buf);
	      cur_entry=NULL;

	    }
	    break;
	  }

	  if(get_echo_mode()==1)   {
	    AddHistory(wk_buf);
	    cur_entry=NULL;
	  }
	  goto exit;

	case SEARCH_BACKWARD:
	  if(tosearch[0]!=EXCL) {
	    PutChar(BEL);
	  }
	  else {
	    if (research_knot_last != NULL) research_knot_last=research_knot_last->prev;
	    cur_entry=SearchBackwardInHistory(tosearch+1);
	    if(cur_entry == NULL) {
	      PutChar(BEL);
	    }
	    else {
	      research_knot_last=cur_entry;
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	    }
	  }
	  break;

	case SEARCH_FORWARD:
	  if(tosearch[0]!=EXCL) {
	    PutChar(BEL);
	  }
	  else {
	    if (research_knot_last != NULL) research_knot_last=research_knot_last->next;
	    cur_entry=SearchForwardInHistory(tosearch+1);
	    if(cur_entry == NULL) {
	      PutChar(BEL);
	    }
	    else {
	      research_knot_last=cur_entry;
	      CopyCurrentHist(wk_buf,&cursor, &cursor_max); 
	    }}
	  break;

	default:
	  PutChar(BEL);
	  break;

	}
      } 
    else {
      /* alpha/numeric keystroke.
       * substitute blank fill for tab char */
      if(keystroke == '\t') {
	keystroke = ' ';
	character_count = TAB_SKIP - (cursor%TAB_SKIP);
	if(character_count == 0)
	  character_count = TAB_SKIP;
      }
      else {
	if(keystroke == EOF) {
	  character_count = 0;
	}
	else {
	  character_count = 1;
	}
      }
      while(character_count--) {
	if(get_echo_mode()==0) {
	  wk_buf[cursor] = keystroke;
	  cursor++;
	}
	else {
	  if(insert_flag) {
	    /* insert mode, move rest of line right and
	     * add character at cursor */
	    move_right(&wk_buf[cursor], WK_BUF_SIZE - cursor);
	    /* bump max cursor but not over buffer
	     * size */
	    cursor_max = (++cursor_max > WK_BUF_SIZE)
	      ?WK_BUF_SIZE : cursor_max;
	    /* if cursor at end of line, backspace so
	     * that new character overwrites last one */
	    if(cursor == WK_BUF_SIZE) {
	      cursor--;
	      backspace(1);
	    }
	    wk_buf[cursor] = keystroke;
	    display_string(&wk_buf[cursor]);
	    cursor++;
	    backspace(cursor_max - cursor);
               
	  } 
	  else {
	    /* overstrike mode */
	    if(cursor == WK_BUF_SIZE) {
	      cursor--;
	      backspace(1);
	    }
	    wk_buf[cursor] = keystroke;
	    PutChar(keystroke);
	    if(cursor < WK_BUF_SIZE - 1) {
	      cursor++;
	      cursor_max = MAX(cursor_max, cursor);
	    }
	    else {
	      backspace(1);
	    }
	  }
	}
      }
    }
  }

 exit:
  /* copy to return buffer */
  if(get_echo_mode()==0)  
    {
      *len_line=cursor;
      strncpy(buffer,wk_buf,*buf_size);
      set_echo_mode(TRUE);
      wk_buf[0] = NUL;
    }
  else {
    *len_line = strlen(wk_buf);
    strncpy(buffer, wk_buf,*buf_size);
    PutChar('\r');  PutChar('\n');
    
  }
#ifdef KEYPAD
  if(!modeX) {
    set_crmod();
    disable_keypad_mode();
  }
#endif
  *eof = FALSE;
  set_is_reading(FALSE);
  
  /* see savehistory */
  NumberOfCommands++;
  if ( ( GetSaveHistoryAfterNcommands() == NumberOfCommands ) && ( GetSaveHistoryAfterNcommands() > 0) )
  {
	  char *filenamehistory=NULL;
	
	  filenamehistory=getfilenamehistory();
	  write_history( filenamehistory );
	  free(filenamehistory);

	  NumberOfCommands=0;
  }
  
  return;

}

/***********************************************************************
 * move_right - move source string to one address larger (right)
 **********************************************************************/
static void move_right(char *source, int max_chars)
{
  char *p;

  p = source;              /* point to beginning */
  while(max_chars-- && *p++) /* increment until max chars or string
			      * end */
    ;
  *p = NUL;                /* force new string end */
  while(--p > source) {    /* move from rightmost edge to right */
    *p = *(p - 1);
  }
}

/***********************************************************************
 * move_left - move source string to one address less (left)
 **********************************************************************/

static void move_left(char *source)
{
  do {                     /* move from left edge to left */
    *source = *(source + 1);
  } while(*source++ != NUL);
}

/***********************************************************************
 * display_string - display string starting at current cursor position
 **********************************************************************/

static void display_string(char *string)
{
  while(*string != NUL) {
    PutChar(*string++);
  }
}

/***********************************************************************
 * backspace - move cursor n char to the left
 **********************************************************************/
static void backspace(int n)
{
  if(n < 1)
    return;
  if (modeX) {
    while(n--)
      PutChar('\010');
  }
  else {
    while(n--)
#ifdef TERMCAP
      if(BC) {                 /* if control-H won-t work */
	fputs(BC, stdout);
      }
      else {                   /* otherwise just use a normal control-H */
	PutChar('\010');
      }
#else
    PutChar('\010');
#endif
  }
}

/***********************************************************************
 * erase n characters to right and back up cursor
 **********************************************************************/

static void erase_nchar(int n)
{
  int i;                   /* fill field with blanks */
  for(i = 0; i < n; i++) {
    PutChar(' ');
  }
  backspace(n);            /* and back up over blanks just written */
}

/***********************************************************************
 * strip_blank(source) - strip trailing blanks by inserting NUL-s
 **********************************************************************/
static void strip_blank(char *source)
{
  char *p;

  p = source;
  /* look for end of string */
  while(*p != NUL) {
    p++;
  }
  while(p != source) {
    p--;
    if(*p != ' ') break;
    *p = NUL;
  }
}
/***********************************************************************
 * get single character with no echo
 * if interrupt is true, gchar_no_echo escape if an event arises
 **********************************************************************/

static int gchar_no_echo(int interrupt)
{
  int i;
  /* get next character, gotten in cbreak mode so no wait for <cr> */
  i = GetCharOrEvent(interrupt);/* i=-1 if return on an event */

  /* if more than one character */
  if(i == ESC) {
    /* translate control code sequences to codes over 100 hex */
    i = translate(i);
  }
  return(i);
}
/***********************************************************************
 * translate escape sequences
 **********************************************************************/
static int translate(int ichar)
{
  int i, j, not_done;
  char *pstr[N_SEQS];      /* points to each sequence as it progresses */

  /* initialize pointer array */
  for(i = 0; i < N_SEQS; i++)
    pstr[i] = &seqs[i][0];
  /* examine all pstrings one char at a time */
  for(j=0; j++ < MAX_SEQ_LEN;) {

    not_done = 0;
    for(i = 0; i < N_SEQS; i++) {
      /* if matches next character, this sequence */
      if(ichar == *pstr[i]) {
	/* if next character, this sequence, null */
	if(!*(++pstr[i]))
	  /* return sequence mapped to integer */
	  return(key_map[i]);
	else
	  /* flag not done with this sequence yet */
	  not_done = 1;
      }
    }
    /* if any sequence not finished yet */
    if(not_done) {
      ichar = GetCharOrEvent(0);
    }
    else {
      /* hopefully at first character */
      break;
    }
  }

  return(ichar);
}

/***********************************************************************
 * Copy the history current line to the screen
 **********************************************************************/

static int CopyCurrentHist(char *wk_buf,int *cursor,int *cursor_max) 
{
  if (cur_entry != NULL) 
    {
      strcpy (wk_buf,cur_entry->line); /* copy history to buffer*/
      backspace(*cursor);/* backspace to beginning of line */
      display_string(wk_buf);/* copy to screen */
      *cursor = strlen(wk_buf);/* cursor set at end of line */
      /* erase extra characters left over if any */
      erase_nchar(MAX(0, *cursor_max - *cursor));
      *cursor_max = *cursor;
      return 1;
    }
  return 0;
}
/************************************************************************
 * PutChar : common interface to putchar and Xputchar
 ***********************************************************************/

void PutChar(int c)
{
#ifdef WITH_GTK
  putchar(c);
#else
  if(modeX)
    Xputchar(c);
  else
    putchar(c);
#endif
}

/************************************************************************
 * GetCharOrEvent : common interface to XEvorgetchar and Xorgetchar
 ***********************************************************************/

int GetCharOrEvent(int interrupt)
{
#ifdef WITH_GTK
  return Xorgetchar(interrupt);
#else
  if(modeX)
    return XEvorgetchar(interrupt);
  else
    return Xorgetchar(interrupt);
#endif
}

/************************************************************************
 * get_one_char : pour xscimore (gtk uniquement)
 ***********************************************************************/
#ifdef WITH_GTK
int get_one_char(char *prompt) {
  static char lp[24];
  char buffer[2];
  int buf_size=2, len_line, eof;
  int menusflag=0,modex=0;
  strcpy(lp,Sci_Prompt);
  strcpy(Sci_Prompt,prompt); 
  C2F(zzledt)(buffer,&buf_size,&len_line,&eof,&menusflag,&modex,2);
  strcpy(Sci_Prompt,lp);
  return buffer[0];
  return Xorgetchar(1);
}
#endif

/* ---------------procedures specific to console mode--------------- */

#ifdef WITH_GTK
void sci_get_screen_size (int *rows,int *cols)
{
  struct winsize window_size;
  if (ioctl (fd, TIOCGWINSZ, &window_size) == 0)
    {
      *cols = (int) window_size.ws_col;
      *rows = (int) window_size.ws_row;
    }
}

#endif
 
/************************************************************************
 * set CBREAK mode and switch off echo and disable CR action!
 ***********************************************************************/
static void set_cbreak()
{
  /* switch to CBREAK mode without flushing
   * line buffer */
#ifdef B42UNIX
  arg.sg_flags |= CBREAK;
  arg.sg_flags &= ~ECHO; 
  /* arg.sg_flags &= ~CRMOD; */
  ioctl(fd, TIOCSETN, &arg);
#endif

#ifdef ATTUNIX
  arg.c_lflag &= ~ICANON;
  arg.c_lflag &= ~ECHO;
  /* arg.c_iflag &= ~ICRNL; */
  arg.c_oflag &= ~OPOST;
  arg.c_cc [VMIN] = 1;
  arg.c_cc [VTIME] = 0;
  ioctl(fd, TCSETAW, &arg);
#endif
  cbreak_crmod = 0;
  return;
}

/************************************************************************
 * reset to original mode 
 ***********************************************************************/

static void set_crmod()
{
  /* reset to original mode (CRMOD) */
#ifdef B42UNIX
  arg.sg_flags = save_sg_flags;
  ioctl(fd, TIOCSETN, &arg);
  arg1.t_intrc = 3;
  ioctl(fd, TIOCSETC, &arg1);
#endif
#ifdef ATTUNIX
  ioctl(fd, TCSETAW, &save_term);
#endif
  cbreak_crmod = 1;
  return;
}

/************************************************************************
 * initialise the io sequences
 ***********************************************************************/

static void init_io()
{
  int  tgetent();
  char *getenv();
  char *tgetstr();
  char tc_buf[1024];       /* holds termcap buffer */
  char *area;
  char erase_char;
  int i;
  /* check standard for interactive */
  fd=fileno(stdin);
  tty = isatty(fileno(stdin));
  if (tty == 0) return;

#ifdef B42UNIX
  ioctl(fd,TIOCGETP,&arg);
  save_sg_flags = arg.sg_flags;
  ioctl(fd,TIOCGETC,&arg1);
  erase_char = arg.sg_erase;
#endif

#ifdef ATTUNIX
  ioctl(fd, TCGETA, &arg);
  ioctl(fd, TCGETA, &save_term);
  erase_char = save_term.c_cc [VERASE];
#endif

#ifdef TERMCAP
  /* get termcap translations */
  if(tgetent(tc_buf, getenv("TERM")) == 1) {
    /* loop thru zero terminated list of input
     * capabilities */
    for(i = 0; *tc_capabilities[i]; i++) {
      area = &seqs[i][0];
      tgetstr(tc_capabilities[i], &area);
    }
    area = strings;       /* point to place where strings are to
			   * be stored */
    KS = tgetstr("ks", &area);
    KE = tgetstr("ke", &area);
    CE = tgetstr("ce", &area);
    BC = tgetstr("bc", &area);
    IM = tgetstr("im", &area);
    IC = tgetstr("ic", &area);
    EI = tgetstr("ei", &area);
    CL = tgetstr("cl", &area);
  }
#endif
  setvbuf(stdin, NULL, _IONBF, 0); /* ehrlich juin 2001 */

}
/************************************************************************
 * To make known that this zzledt code does not use readline
 ***********************************************************************/

int using_readline() 
{ 
  return 0;
}

#ifdef TERMCAP
/************************************************************************
 * enable keypad mode if using termcap
 ***********************************************************************/

static void enable_keypad_mode()
{
  /* enable keypad transmit mode */
  if(KS && *KS)
    fputs(KS, stdout);
}

/************************************************************************
 * disable the keypad mode if using termcap
 ***********************************************************************/

static void disable_keypad_mode()
{
  /* disable keypad transmit mode */
  if(KE && *KE)
    fputs(KE, stdout);
}
#else 
/************************************************************************
 *wee need references to thoses function if using KEYPAD but not Having TERMCAP
 ***********************************************************************/
static void enable_keypad_mode(){}

static void disable_keypad_mode(){}
#endif

int XSaveNative _PARAMS((char *fname, unsigned long fname_len))
{
	Scierror(999,"\nNot yet implemented. \n");	
	return 0;
}

int HomeFunction _PARAMS((char *fname, unsigned long fname_len))
{
  XHomeFunction(); /* In SCI/routines/xsci/x_util.c */
  return 0;
}

int ClearScreenConsole _PARAMS((char *fname, unsigned long fname_len))
{
  return XClearScreenConsole(fname); /* In SCI/routines/xsci/x_util.c */
}

int ShowWindowFunction _PARAMS((char *fname, unsigned long fname_len))
{
  Scierror(999,"\nNot yet implemented. \n");	
  return 0;
}


#endif /* The win32 version is defined in the wsci directory **/
#include <stdio.h>
#include <string.h>
/************************************************************************
 * setprlev : set the current prompt string
 ***********************************************************************/

void C2F(setprlev)( int *pause)
{
  if ( *pause == 0 ) 
    sprintf(Sci_Prompt,"-->");
  else if ( *pause > 0 )
    sprintf(Sci_Prompt,"-%d->",*pause);
  else
    sprintf(Sci_Prompt,">>");
}

void GetCurrentPrompt(char *CurrentPrompt)
{
	if (CurrentPrompt)
	{
		strcpy(CurrentPrompt,Sci_Prompt);
	}
}

#endif /* the gtk readline version is in gtk */ 


syntax highlighted by Code2HTML, v. 0.9.1