3
votes
3answers
83 views
Outputting unicode characters in windows terminal
Over the past week I've been working on a roguelike game in C++ along with a friend. Mostly too learn the language.
I'm using:
pdcurses
Windows 7
Visual studio C++
To output w …
1
vote
1answer
20 views
ncurses and stdin blocking problem
I have stdin in a select() set and I want to take a string from stdin whenever the user types it and hits ENTER.
But select is triggering stdin as ready to read before ENTER is hi …
1
vote
3answers
80 views
Python on AIX: What are my options?
I need to make some Python applications for a work project. The target platform is AIX 5.3.
My question is: What version of Python should I be using?
My requirements are:
The P …
0
votes
2answers
96 views
Python library for (n)curses widgets
While Python's standard library has a module for curses, that seems to require a lot of fairly low-level handling.
Is there a simpler way to get started with writing a basic curse …
0
votes
4answers
203 views
Curses getting arrow keys
In trying to get input from the arrow keys via curses (ncurses) it won't catch as KEY_UP etc. I used the keypad function with a true argument but getch still returns an escaped se …
0
votes
1answer
43 views
looking for x-platform python console library
Hello, I'm a Python newbie.
I need something like Curses library for Python 2.6 or 3.1 to run on Windows and Linux without any code changes.
I need functions for colorizing text …
0
votes
1answer
104 views
Vim, Python and curses
Hello,
I wrote a small python script for vim that uses the curses library.
When I try to call the function curses complains about:
Traceback (most recent call last):
File "<str …
2
votes
1answer
65 views
Why is curses on linux giving me following error?
Trying to get getch() working to capture key press.
#include <curses.h>
...
...
WINDOW *w;
char f;
w = initscr();
timeout(3000);
f = getch();
…
1
vote
3answers
124 views
AIX/XP Curses get key/modifier key in a cross platform fashion.
Hello All.
I am working on a simple console app to get my feet wet with curses again. I am having a bit of a problem porting my app from xp to AIX. Here is a sample chunk of co …
0
votes
1answer
65 views
Learning Ruby Curses
Does anyone know of any good tutorials for learning Ruby with Curses? I just can't seem to find one and the doc is very vague. I have never used curses before so I really don't kno …
1
vote
1answer
48 views
How do I use extended characters in Python’s curses library?
I've been reading tutorials about Curses programming in Python, and many refer to an ability to use extended characters, such as line-drawing symbols. They're characters > 255, and …
0
votes
1answer
65 views
pine/elm type command line email for MAPI?
hi, I wondered if anyone knew of, or had written a curses/text mode email client for MAPI
Rationale is that Outlook is pretty fat these days, and quite slow.
I'm thinking that …
0
votes
1answer
66 views
STDIN.getc locking my application
I have the following code
class TimeReport
def run
init_screen
lines = Curses::lines
cols = Curses::cols
read=""
begin
crmode
noecho
got …
1
vote
2answers
416 views
Ruby Keyboard event handling
Hello im using curses to develop a small console application.
I have a main loop section wich waits for user input, it uses the getstr function, of course this waits for the user …
0
votes
1answer
167 views
Compiling Python, curses.h not found
I'm attempting to build Python 2.6.2 from source on my Linux system. It has ncurses installed on /usr/local/, and curses.h is on /usr/local/include/ncurses. So curses.h isn't fou …
