home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************
-
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- VSCRHND
- =======
-
- This module implements a screen handler for a virtual screen.
- The handler is called by:
- scrhnd(TOPLINE,ENDKEY)
-
- TOPLINE = on/off - decides if there should be a top line
- ENDKEY - Esc or F10 to select a field
-
- ****************************************************************/
-
- /*
- DOMAINS
- FNAME=SYMBOL
- TYPE = int(); str(); real()
- VALUE = int(INTEGER); str(STRING); real(REAL)
-
- DATABASE
- /* Database declarations used in scrhnd */
- insmode /* Global insertmode */
- actfield(FNAME) /* Actual field */
- screen(SYMBOL,DBASEDOM) /* Saving different screens */
- value(FNAME,STRING) /* value of a field */
- field(FNAME,TYPE,ROW,COL,LEN) /* Screen definition */
- txtfield(ROW,COL,LEN,STRING)
- windowsize(ROW,COL).
- notopline
-
- /* DATABASE PREDICATES USED BY VSCRHND */
- windowstart(ROW,COL)
- mycursord(ROW,COL)
-
- /* Database declarations used in lineinp */
- lineinpstate(STRING,COL)
- */
-
-
- PREDICATES
- /* SCREEN DRIVER */
- scrhnd(SYMBOL,KEY)
- endkey(KEY)
- scr(KEY)
- writescr
- showcursor
- mkheader
- showoverwrite
-
- ass_val(FNAME,STRING)
- types(INTEGER,TYPE,STRING)
-
- valid(FNAME,TYPE,STRING)
- typeerror
- chng_actfield(FNAME)
- field_action(FNAME)
- field_value(FNAME,STRING)
- noinput(FNAME)
-
- /***********************************************************************/
- /* myfield_attr */
- /* Sets only the attribute for fields inside the actual screen */
- /***********************************************************************/
-
- PREDICATES
- myfield_attr(ROW,COL,LEN,INTEGER)
-
- CLAUSES
- myfield_attr(R,C,LEN,ATTR):-
- windowstart(RS,CS),windowsize(RR,CC),
- R>=RS, R<=RS+RR,
- C<=CS+CC, C+LEN>CS,!,
- R1=R-RS,
- max(C,CS,C1),
- HH1=C+LEN, HH2=1+CS+CC,
- min(HH1,HH2,HH),
- L1=HH-C1,
- C2=C1-CS,
- field_attr(R1,C2,L1,ATTR).
- myfield_attr(_,_,_,_).
-
- /***********************************************************************/
- /* myfield_str */
- /* Prints only text inside the actual screen */
- /***********************************************************************/
-
- PREDICATES
- myfield_str(ROW,COL,LEN,STRING)
- check_drop(INTEGER,STRING,STRING)
-
- CLAUSES
- check_drop(N,STR,STR):-N<=0,!.
- check_drop(N,STR,STR1):-frontstr(N,STR,_,STR1).
-
- myfield_str(R,C,LEN,STR):-
- windowstart(RS,CS),windowsize(RR,CC),
- R>=RS, R<=RS+RR,
- C+LEN>CS, C<=CS+CC, !,
- R1=R-RS,
- max(C,CS,C1),
- HH1=C+LEN, HH2=1+CS+CC,
- min(HH1,HH2,HH),
- L1=HH-C1,
- C2=C1-CS, MINUSLEN=CS-C,
- check_drop(MINUSLEN,STR,STR1),
- field_str(R1,C2,L1,STR1).
- myfield_str(_,_,_,_).
-
-
-
-
- /************************************************************************/
- /* MYCURSOR */
- /************************************************************************/
- PREDICATES
- mycursor(ROW,COL)
- juststart(ROW,COL,ROW,COL,ROW,COL)
- newstart(ROW,COL)
-
-
- CLAUSES
- mycursor(R,C):-free(R),free(C),mycursord(R,C),!.
-
- mycursor(R,C):-bound(R),bound(C),
- windowstart(RR,CC),
- R>=RR, C>=CC,
- windowsize(RS,CS),
- R<=RR+RS, C<=CC+CS,!,
- retract(mycursord(_,_)),!,
- assert(mycursord(R,C)),
- R1=R-RR, C1=C-CC,
- cursor(R1,C1).
-
- mycursor(R,C):-bound(R),bound(C),
- windowstart(RR,CC),
- windowsize(RS,CS),!,
- juststart(R,C,RR,CC,RS,CS),
- mycursor(R,C).
-
-
- PREDICATES
- wrscr(ROW,ROW)
- check_update(ROW,ROW)
-
- CLAUSES
- wrscr(_,_):-keypressed,!.
- wrscr(SR,RS):-
- txtfield(ROW,COL,LEN,STR),
- ROW>SR,ROW<=RS,
- myfield_str(ROW,COL,LEN,STR),
- keypressed,!.
- wrscr(SR,RS):-
- field(FNAME,_,ROW,COL,LEN),
- ROW>SR,ROW<=RS,
- myfield_attr(ROW,COL,LEN,112),
- field_value(FNAME,VAL),
- myfield_str(ROW,COL,LEN,VAL),
- keypressed,!.
- wrscr(_,_).
-
- newstart(R,C):-retract(windowstart(OLDR,OLDC)),!,
- assert(windowstart(R,C)),
- SCROLLROW=R-OLDR,SCROLLCOL=C-OLDC,
- scroll(SCROLLROW,SCROLLCOL),
- check_update(R,SCROLLROW).
-
- check_update(R,ROWS):-
- ROWS>0,!,
- windowsize(NOOFROWS,_),!,
- ENDROW=R+NOOFROWS,
- STARTROW=ENDROW-ROWS,
- wrscr(STARTROW,ENDROW).
- check_update(R,ROWS):-
- ROWS<0,!,
- R1=R-1,
- ENDROW=R1-ROWS,
- wrscr(R1,ENDROW).
- check_update(_,_).
-
-
- /* juststart( ACTCURSOR, WINDSTART, WINDSIZE ) */
- juststart(R,_,RR,CC,_,_):-R<RR,!,newstart(R,CC).
- juststart(_,C,RR,CC,_,_):-C<CC,!,newstart(RR,C).
- juststart(R,_,RR,CC,RS,_):-R>RR+RS,!,R1=R-RS,newstart(R1,CC).
- juststart(_,C,RR,CC,_,CS):-C>CC+CS,!,C1=C-CS,newstart(RR,C1).
-
-
- /***********************************************************************/
- /* Create the window */
- /* This can be used to create the window automatically from */
- /* the windowsize predicate. */
- /***********************************************************************/
-
- PREDICATES
- createwindow(SYMBOL)
-
- CLAUSES
- createwindow(off):-
- windowsize(R,C),!,
- R1=R+3, C1=C+3,
- makewindow(81,66,23,"",0,0,R1,C1).
- createwindow(on):-
- windowsize(R,C),!,
- R1=R+3, C1=C+3,
- makewindow(85,112,0,"",0,0,1,C1),
- makewindow(81,66,23,"",1,0,R1,C1).
-
-
- /***********************************************************************/
- /* Intermediate predicates */
- /***********************************************************************/
-
- PREDICATES
- trunc(LEN,STRING,STRING)
- oldstr(FNAME,STRING)
- settopline(SYMBOL)
-
- CLAUSES
- endkey(fkey(10)):-!.
- endkey(esc).
-
- trunc(LEN,STR1,STR2):-str_len(STR1,L1),L1>LEN,!,frontstr(LEN,STR1,STR2,_).
- trunc(_,STR,STR).
-
- settopline(_):-retract(notopline),fail.
- settopline(off):-!,assert(notopline).
- settopline(_).
-
- oldstr(FNAME,S):- value(FNAME,S),!.
- oldstr(_,"").
-
- ass_val(FNAME,_):- retract(value(FNAME,_)),fail.
- ass_val(FNAME,VAL):-VAL><"",assert(value(FNAME,VAL)),fail.
- ass_val(_,_).
-
- chng_actfield(_):-
- retract(actfield(_)),fail.
- chng_actfield(FNAME):-
- assert(actfield(FNAME)).
-
- typeerror:-
- actfield(FNAME),
- field(FNAME,TYPE,_,_,_),
- value(FNAME,VAL),
- not(valid(FNAME,TYPE,VAL)),
- beep,!.
-
- valid(_,str,_).
- valid(_,int,STR):-str_int(STR,_).
- valid(_,real,STR):-str_real(STR,_).
-
- /* The known types */
- types(1,int,"integer").
- types(2,real,"real").
- types(3,str,"string").
-
-
- /***********************************************************************/
- /* SCREEN DRIVER */
- /* Screen definition/input is repeated until F10 is pressed */
- /***********************************************************************/
-
- scrhnd(_,_):-retract(windowstart(_,_)),fail.
- scrhnd(_,_):-retract(mycursord(_,_)),fail.
- scrhnd(STATUSON,KEY):-
- assert(windowstart(0,0)),
- assert(mycursord(0,0)),
- settopline(STATUSON),
- mkheader,
- field(FNAME,_,R,C,_),!,mycursor(R,C),
- chng_actfield(FNAME),
- showcursor,
- repeat,
- writescr,
- keypressed,
- /* Continuation until keypress means that time dependent
- user functions can be updated */
- readkey(KEY),
- scr(KEY),
- showcursor,
- endkey(KEY),!.
-
- /*******************************************************************/
- /* Find the next field */
- /*******************************************************************/
-
- PREDICATES
- /* The predicates should be called with:
- ACTROW, ACTCOL, MAXROW, MAXCOL, NEWROW, NEWCOL */
- best_right(ROW,COL,ROW,COL,ROW,COL)
- best_left(ROW,COL,ROW,COL,ROW,COL)
- best_down(ROW,COL,ROW,COL,LEN,ROW,COL)
- best_up(ROW,COL,ROW,COL,LEN,ROW,COL)
- better_right(ROW,COL,ROW,COL,ROW,COL)
- better_left(ROW,COL,ROW,COL,ROW,COL)
- better_field(ROW,COL,ROW,COL,LEN,ROW,COL,LEN)
- calcdist(ROW,COL,ROW,COL,LEN,LEN)
- move_left
- move_right
- nextfield(ROW,COL)
- gtfield(ROW,ROW,COL,COL)
- prevfield(ROW,COL)
- chk_found(FNAME,ROW,COL,ROW,COL)
- setlastfield
- best_pgdown(ROW)
- best_pgup(ROW)
-
- CLAUSES
- best_right(R0,C0,R1,C1,ROW,COL):-
- field(_,_,R2,C2,_), C2>C0,
- better_right(R0,C0,R1,C1,R2,C2),!,
- best_right(R0,C0,R2,C2,ROW,COL).
- best_right(_,_,R,C,R,C).
-
- better_right(R0,_,R1,_,R2,_):-abs(R2-R0)<abs(R1-R0),!.
- better_right(R0,_,R1,C1,R2,C2):-abs(R2-R0)=abs(R1-R0),C2<C1.
-
- best_left(R0,C0,R1,C1,ROW,COL):-
- field(_,_,R2,C2,_), C2<C0,
- better_left(R0,C0,R1,C1,R2,C2),!,
- best_left(R0,C0,R2,C2,ROW,COL).
- best_left(_,_,R,C,R,C).
-
- better_left(R0,_,R1,_,R2,_):-abs(R2-R0)<abs(R1-R0),!.
- better_left(R0,_,R1,C1,R2,C2):-abs(R2-R0)=abs(R1-R0),C2>C1.
-
- best_down(R0,C0,R1,C1,L1,ROW,COL):-
- field(_,_,R2,C2,L2), R2>R0,
- better_field(R0,C0,R1,C1,L1,R2,C2,L2),!,
- best_down(R0,C0,R2,C2,L2,ROW,COL).
- best_down(_,_,R,C,_,R,C).
-
- PREDICATES
- setfirstfield
- check_better_up(ROW,COL,ROW,COL,LEN)
-
- CLAUSES
- setfirstfield:-field(FIRST,_,_,_,_),!,chng_actfield(FIRST).
-
- check_better_up(R0,C0,R2,C2,L2):-
- actfield(FNAME),
- field(FNAME,_,R1,C1,L1),!,
- better_field(R0,C0,R1,C1,L1,R2,C2,L2).
-
- best_up(R0,C0,_,_,_,_,_):-
- setfirstfield,
- field(F1,_,R2,C2,L2), R2<R0,
- check_better_up(R0,C0,R2,C2,L2),
- chng_actfield(F1),
- fail.
- best_up(_,_,_,_,_,R,C):-
- actfield(FNAME),
- field(FNAME,_,R,C,_),
- mycursor(R,C),!.
-
- better_field(R0,C0,R1,C1,L1,R2,C2,L2):-
- calcdist(R0,C0,R1,C1,L1,DIST1),
- calcdist(R0,C0,R2,C2,L2,DIST2),
- DIST2<DIST1.
-
- calcdist(R0,C0,R1,C1,L1,DIST):-
- C11=C1+L1,
- max(C0,C1,H1),
- min(H1,C11,H2),
- DIST=3*abs(R1-R0)+abs(H2-C0).
-
- move_left:-
- actfield(FNAME),
- field(FNAME,_,R,C,_),!,
- best_left(R,C,-100,-100,ROW,COL),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(ROW,COL).
-
- move_right:-
- actfield(FNAME),
- field(FNAME,_,R,C,_),!,
- best_right(R,C,-100,-100,ROW,COL),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(ROW,COL).
-
- prevfield(R,C):-
- field(FNAME,_,ROW,COL,_),
- chk_found(FNAME,R,C,ROW,COL),!,
- actfield(F1),
- field(F1,_,RR,CC,_),!,
- mycursor(RR,CC).
-
- chk_found(_,R,C,R,C):-!.
- chk_found(FNAME,_,_,_,_):-chng_actfield(FNAME),fail.
-
- nextfield(R,C):-
- field(FNAME,_,ROW,COL,_),gtfield(ROW,R,COL,C),
- chng_actfield(FNAME),!,
- mycursor(ROW,COL).
- nextfield(_,_).
-
- gtfield(R1,R2,_,_):-R1>R2,!.
- gtfield(R,R,C1,C2):-C1>C2.
-
- setlastfield:-
- field(FNAME,_,_,_,_),
- chng_actfield(FNAME),
- fail.
- setlastfield.
-
-
- best_pgdown(R):-
- windowsize(RR,_),
- field(FNAME,_,ROW,_,_),
- chng_actfield(FNAME),
- ROW>=R+RR,!.
- best_pgdown(_).
-
- best_pgup(R):-
- windowsize(RR,_),
- field(FNAME,_,ROW,_,_),
- chng_actfield(FNAME),
- ROW>=R-RR,!.
- best_pgup(_).
-
-
- /***********************************************************************/
- /* scr */
- /***********************************************************************/
-
- /* Insert a new character in a field */
- scr(char(T)):-actfield(FNAME),
- not(noinput(FNAME)),
- mycursor(_,C),
- field(FNAME,_,ROW,COL,LEN),!,
- POS=C-COL,
- oldstr(FNAME,STR),
- lin(char(T),POS,STR,STR1),
- trunc(LEN,STR1,STR2),
- ass_val(FNAME,STR2),
- myfield_str(ROW,COL,LEN,STR2),
- scr(right).
-
-
- /* Delete character under cursor */
- scr(del):- actfield(FNAME),
- not(noinput(FNAME)),
- mycursor(_,C),
- field(FNAME,_,ROW,COL,LEN),!,
- POS=C-COL,
- oldstr(FNAME,STR),
- lin(del,POS,STR,STR1),
- ass_val(FNAME,STR1),
- myfield_str(ROW,COL,LEN,STR1).
-
- /* Delete character before cursor and move cursor to the left */
- scr(bdel):- actfield(FNAME),
- not(noinput(FNAME)),
- mycursor(_,C),
- field(FNAME,_,ROW,COL,LEN),!,
- POS=C-COL-1,
- oldstr(FNAME,STR),
- lin(del,POS,STR,STR1),
- ass_val(FNAME,STR1),
- myfield_str(ROW,COL,LEN,STR1),
- scr(left).
-
- /*If there is an action - do it. Otherwise, go to next field*/
- scr(cr):-
- actfield(FNAME),
- field_action(FNAME),
- cursor(RR,CC),cursor(RR,CC),!.
- scr(cr):-
- scr(tab).
-
- /* Change between insertmode and overwritemode */
- scr(ins):-changemode,showoverwrite.
-
- /* escape */
- scr( esc ).
-
- /* F10: end of definition */
- scr( fkey(10) ):-not(typeerror).
-
- scr(right):-
- not(typeerror),
- actfield(FNAME),
- not(noinput(FNAME)),
- field(FNAME,_,_,C,L),
- mycursor(ROW,COL), COL<C+L-1,!,
- COL1=COL+1,
- mycursor(ROW,COL1).
-
- scr(right):-
- not(typeerror),
- move_right.
-
- scr(ctrlright):-
- not(typeerror),
- actfield(FNAME),
- not(noinput(FNAME)),
- field(FNAME,_,_,C,L),
- mycursor(ROW,COL),
- COL1=COL+5, COL1<C+L-1,!,
- mycursor(ROW,COL1).
-
- scr(ctrlright):-
- not(typeerror),
- move_right.
-
- scr(left):-
- not(typeerror),
- actfield(FNAME), field(FNAME,_,_,C,_),
- mycursor(ROW,COL),
- COL>C,!,
- COL1=COL-1,
- mycursor(ROW,COL1).
-
- scr(left):-
- not(typeerror),
- move_left.
-
- scr(ctrlleft):-
- not(typeerror),
- actfield(FNAME), field(FNAME,_,_,C,_),
- mycursor(ROW,COL),
- COL1=COL-5, COL1>C,!,
- mycursor(ROW,COL1).
-
- scr(ctrlleft):-
- not(typeerror),
- move_left.
-
- scr(tab):-
- not(typeerror),
- mycursor(R,C),
- nextfield(R,C).
-
- scr(btab):-
- not(typeerror),
- mycursor(R,C),
- prevfield(R,C).
-
- scr(up):-
- not(typeerror),
- mycursor(R,C),
- trace(on),
- best_up(R,C,-100,-100,1,ROW,COL),
- mycursor(ROW,COL).
-
- scr(down):-
- not(typeerror),
- mycursor(R,C),
- best_down(R,C,100,100,1,ROW,COL),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(ROW,COL).
-
- scr(pgdn):-
- not(typeerror),
- actfield(FNAME),
- field(FNAME,_,R,_,_),
- best_pgdown(R),
- actfield(F1),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(ROW,COL).
-
- scr(pgup):-
- not(typeerror),
- actfield(FNAME),
- field(FNAME,_,R,_,_),
- best_pgup(R),
- actfield(F1),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(ROW,COL).
-
- scr(home):-
- not(typeerror),
- field(F1,_,ROW,COL,_),
- chng_actfield(F1),!,
- mycursor(0,0),
- mycursor(ROW,COL).
-
- scr(end):-
- not(typeerror),
- setlastfield,
- actfield(FNAME),
- field(FNAME,_,ROW,COL,_),!,
- mycursor(ROW,COL).
-
- /* scr(fkey(1)):-help. If a help system is used. */
-
- /***********************************************************************/
- /* Predicates maintaining the top messages line */
- /***********************************************************************/
-
- mkheader:-notopline,!.
- mkheader:-!,
- shiftwindow(OLD),
- gotowindow(85),
- field_str(0,0,16,"ROW: COL:"),
- showoverwrite,
- gotowindow(OLD).
-
- PREDICATES
- get_overwritestatus(STRING)
- show_str(COL,LEN,STRING)
- showfield
-
- CLAUSES
- get_overwritestatus(insert):-insmode,!.
- get_overwritestatus(overwrite).
-
- show_str(C,L,STR):-
- windowsize(_,COLS),
- C<COLS,!,
- MAXL=COLS-C,
- min(L,MAXL,LL),
- field_str(0,C,LL,STR).
- show_str(_,_,_).
-
- showoverwrite:-notopline,!.
- showoverwrite:-
- shiftwindow(OLD),
- gotowindow(85),
- get_overwritestatus(OV),
- show_str(20,9,OV),
- gotowindow(OLD).
-
- showfield:-keypressed,!.
- showfield:-
- mycursor(R,C),
- field(FNAME,TYP,ROW,COL,LEN),
- ROW=R, COL<=C, C<COL+LEN,
- types(_,TYP,TYPE),!,
- show_str(30,8,TYPE),
- STR=FNAME, show_str(38,42,STR).
- showfield:-keypressed,!.
- showfield:-
- mycursor(R,C),
- txtfield(ROW,COL,LEN,TXT),
- ROW=R, COL<=C, C<=COL+LEN,!,
- show_str(30,1,"\""),
- show_str(31,49,TXT).
- showfield:-show_str(30,50,"").
-
- showcursor:-keypressed,!.
- showcursor:-notopline,!.
- showcursor:-
- shiftwindow(OLD),
- gotowindow(85),
- mycursor(R,C),!,
- str_int(RSTR,R), str_int(CSTR,C),
- show_str(4,4,RSTR), show_str(14,4,CSTR),
- showfield,
- gotowindow(OLD),
- cursor(RR,CC),
- cursor(RR,CC).
-
- /***********************************************************************/
- /* update all fields on the screen */
- /***********************************************************************/
-
- writescr:-
- windowstart(SR,_), windowsize(RR,_),!,
- RS=SR+RR,
- wrscr(SR,RS).
-
- /***********************************************************************/
- /* Shift screen */
- /* Can be used if needed */
- /***********************************************************************/
- /*
- PREDICATES
- shiftscreen(SYMBOL)
-
- CLAUSES
- shiftscreen(_):-retract(field(_,_,_,_,_)),fail.
- shiftscreen(_):-retract(txtfield(_,_,_,_)),fail.
- shiftscreen(_):-retract(windowsize(_,_)),fail.
- shiftscreen(NAME):-screen(NAME,TERM),assert(TERM),fail.
- shiftscreen(_).
- */