5 Cent tip for today [ Ncurses ]

Featuring the Dragonfly web framework
Locked
newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

5 Cent tip for today [ Ncurses ]

Post by newdep »

;;;
;;; newlisp ncurses example
;;;

(set 'buffer "newlisp * ncurses How simple can it get :) press a key!")

;;; import functions from ncurses lib
(set 'ncfuncs '( "initscr" "box" "newwin" "endwin" "delwin" "wgetch" "wrefresh" "mvwprintw" ))
(define (import-ncurses) (dolist (x ncfuncs ) (import "/lib/libncurses.so.5" x)))

;;; Newlisp-Ncurses
(import-ncurses)
(initscr)
(set 'window (newwin 3 80 0 0 ))
(box window 0 0)
(mvwprintw window 1 1 buffer )
(wrefresh window)
(wgetch window)
(delwin window)
(endwin)

;;; exit
(exit)
-- (define? (Cornflakes))

newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Post by newdep »

Actualy what amazes me the most is that the return from the lib-call 'window
here is directly a pointer, the need for 'get-float 'get-integer is not needed :-)
Norman.
-- (define? (Cornflakes))

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

Wonderful Norman, your ncurses example is amazing!

About 'get-integer', 'get-float' etc.: you only need those when the return value from your 'C' function is a pointer to those. As some of the curses functions take and return pointers you can receive and feed them back directly.

You can even retrieve structure members when structure pointers come back using those get-xxxx functions and adding offsets to the pointers (see mysql.lsp).

Lutz

eddier
Posts: 289
Joined: Mon Oct 07, 2002 2:48 pm
Location: Blue Mountain College, MS US

Post by eddier »

Ooooffff! I overlooked this one. Thanks Normann! This one WILL come in handy. I wonder how difficult it would be to make a newlisp editor in newlisp using ncurses?

Eddie

newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Post by newdep »

Hello Eddier,

Actualy i Tried once building an editor under linux, you have to be patient ;-)
Ncurses comes with lot of routines and the trick is to pick the right one... But it
should be possible there newlisp handles lib-calls very nicely...
-- (define? (Cornflakes))

schilling.klaus
Posts: 7
Joined: Thu Jul 05, 2012 5:24 am

Re: 5 Cent tip for today [ Ncurses ]

Post by schilling.klaus »

How does the foreign function interface treat C-preprocessor macros? Some `functions' in the ncurses library, such as getyx, are really macros and would screw up for example the simple ffi of Clisp. (The backdoor is then to write wrapper code in C and link it against the Clisp library.)

Klaus Schilling

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: 5 Cent tip for today [ Ncurses ]

Post by Lutz »

Both FFI flavors in newLISP - the simple and the libffi based - will not import macros. But on the BSD manual page for getcurx on OSX its says "All of these interfaces are provided as macros and functions". But instead of getyx use getcurx and getcury on the ncurses lib.

Locked