Curses is a library for unix-ish computers that you can use to have better and more interactive consoles, including colors. It is used in some console games, like the original Rogue.
0
votes
1answer
23 views
Show bash script output in live on perl - curses script
I'm a newb' on Perl, and try to do a simple script's launcher in Perl with Curses (Curses::UI)
On Stackoverflow I found a solution to print (in Perl) in real time the output of a Bash script.
But I ...
0
votes
2answers
47 views
Print and update a matrix in-place [closed]
I have a matrix represented as a list of lists (but can easily change this representation if it would help). I will be updating this matrix as the program runs. I would like to have the matrix ...
1
vote
1answer
29 views
Trouble porting over python-2.7 curses to python-2.4
I wrote my python code at home for 2.7, but now I'm trying to fix it to run on 2.4 here at work.
The first is hline does not work for me. I have
stdscr.hline(0,0,'=',5)
but it only prints out ...
0
votes
0answers
12 views
curses.echo() stopped working in curses after window became pad
In an earlier version of this program echo() worked fine but stopped working after some rewrites.
The only thing i can think of that could be relevant is that the main window (self.screen) is now a ...
1
vote
0answers
17 views
is there any way to resize a terminal with ncurses?
I'm trying to build a program using curses and ruby. There is a resizeterm function that changes the dimensions of the curses window resizeterm. But it does not actually resize my mac terminal window ...
0
votes
1answer
126 views
Background colour of player character (@) overlapping other tiles
I'm making a rogue like game using pdcurses in C++ and all it's going ok at the moment. But I'm facing a problem right now that I don't know how to solve.
Let's see a screenshot of the problem for ...
1
vote
1answer
27 views
Python Error importing Curses - not sure why
So I do have curses installed Ive checked it with dpkg.
Now when I try to import it, this happens
Python 2.7.3 (default, Jan 13 2013, 11:20:46)
[GCC 4.6.3] on linux2
Type "help", "copyright", ...
0
votes
1answer
17 views
Can't scroll main window with curses
I just faced the same problem as this guy: http://computer-programming-forum.com/39-ruby/b4065fe9ccbcae86.htm
Curses (same as Window) have methods scrl(n) and scroll(), and to enable them I have to ...
3
votes
1answer
88 views
Python, “filtered” line editing, read stdin by char with no echo
I need a function that reads input into a buffer as raw_input() would, but instead of echoing input and blocking until returning a full line, it should supress echo and invoke a callback every time ...
0
votes
2answers
55 views
getch() returns \377! instead of reading character
I am using Xcode and using the C language trying to understand how to use the Getch function to start a project. I copied some code someone had written as an example that should work, however instead ...
0
votes
0answers
43 views
curses-based program for selection item from the list
Is there in the linux any program which can output results of such commands as, for example, ls, cat, grep, ps etc, by means of curses (for example as listbox)? So by means of such I would like to ...
0
votes
1answer
54 views
How to properly print special key sequences with terminfo in terminal-agnostic way?
I am trying to emulate a user, pressing such special keys as <Left Arrow>, <Backspace>, <Delete> and so on. I heard that curses/terminfo might help to do that in terminal-agnostic ...
0
votes
1answer
72 views
Print a fancy string and update it after it's printed to simulate a GUI
I don't know if this can be done but I'm sure I saw this in some scripts, that's why I'm asking.
I need to print a string like this one:
++++++++++++++++++++++++++++++ +++++++++++++++
+ A 1 ...
1
vote
1answer
60 views
Simple python curses-application uses 100% CPU while running. Is this normal?
Im building this simple application and i noticed that while curses is running the CPU-load in "top" is 100%.. this seems bad. Can anyone explain this?
def Run(self, stdscr):
self.screen = ...
0
votes
1answer
32 views
Weird error with .addstr() in a derwin()-object in Python Curses
Im trying to segment one widow in curses into several subwindows (with derwin()).
So the code creates two sub-windows and i can add a string no problem with the first function. The second one is ...
1
vote
1answer
39 views
Redirecting ruby Curses to /dev/null
I'm trying to write specs for an app that uses Ruby's Curses library. Curses obviously monopolizes the terminal screen, so I've tried redirecting rspec's output to a file. This works, for the most ...
0
votes
0answers
123 views
python curses getch() with threading and blocking? [closed]
I am trying to implement a tetris battle game using Python curses with threading. So I can play it with two hands on my own computer. If you could run the code below, I'd really appreciate it.
The ...
0
votes
1answer
44 views
enter sessible user input box
I am trying to create a input box as shown below. For this reason, I have wrote below code but whenever I press enter key, it should not take any word, lke whenever you press enter key on the username ...
0
votes
1answer
123 views
putting multiple input line to the console | curses
I have started to write console with Python language. It is amazing. But, I have tried to create input box with curses as shown below. I have stucked in how I can put input line and get the input ...
0
votes
0answers
41 views
Print ansi-formatted text in curses
I have some ansi-formatted text in python. I want to print it in curses.
When I do print it:
^[[34mprint^[[39;49;00m ^[[39;49;00m^[[33m'^[[39;49;00m^[[33mhi^[[39;49;00m^[[33m'^[[39;49;00m
I'm using ...
0
votes
1answer
36 views
Abort Curses.getch if it takes too long
How can I make my Ruby application do nothing and continue if Curses.getch takes too long (over x amount of milliseconds) to respond?
Example:
case Curses.getch
when ?a (do stuff)
when ?s (do ...
0
votes
0answers
22 views
How to detect key depression/key being held
So I am using the curses development kit, with ruby and c to create a GUI. I need to detect a key being pressed (just the initial press), to avoid the event linked to an ENTER being re-run over and ...
2
votes
1answer
42 views
Restoring terminal state with curses like vim
I'm writing a program using curses to display information on the screen.
After the program exits, the contents of the screen remain the same. In programs such as vim, the terminal is restored to its ...
0
votes
1answer
50 views
Tracking KEY_ENTER in Ncurses
How does one track KEY_ENTER in ncurses? I have tried tracking \n using getch(), KEY_ENTER, and raw(), to no avail.
1
vote
0answers
135 views
Resizing the curses terminal doesn't resize the program window
I'm on Windows, where the curses module is not native, so I am using the Windows curses module for python 3.2, found here.
My goal is to resize the terminal, which is currently at a small 25 lines x ...
0
votes
1answer
39 views
Keep raw_string at bottom [closed]
I have a threading that outputs stuff and at the same time another thread is waiting for input from the user.
I want to keep raw_input() at the bottom. I know I need to use curses but I don't want to ...
2
votes
1answer
273 views
ncurses: wgetch fails to read correctly after moving / resizing window
I am having a hard time trying to get wgetch to read data from a window after moving and resizing it.
Upon input, I move the window up and increase it's height by 1 too. I then clear the window and ...
0
votes
0answers
142 views
Best way to do a Snake Game using Python Tkinter [closed]
I need to know best way to do a Snake game using Tkinter library, I mean my code was made by characters to represent a snake, but it only works on linux *(with curses library + It can run on windows ...
0
votes
1answer
67 views
Ncurses: Creating padded spaces between columns
I am creating a scrollable list using ncurses, similar to the list in aptitude (apt-get front end).
How should I go about creating padded spaces between columns? I am planning to write each column ...
3
votes
1answer
299 views
Curses alternative for windows
Is there any alternative of the curses module for python to use in windows? I looked up in the python documentation, but there its mentioned that its for using in unix. I am not much familiar with ...
3
votes
1answer
202 views
How to delete a subwindow in the python curses module
I've got a curses application that uses subwindows, but I can't seem to be able to delete them.
For example, this code doesn't work:
import curses
def fill(window, ch):
y, x = window.getmaxyx()
...
0
votes
1answer
86 views
Dealing with multiple strings in curses
I'm trying to make a game that resembles "Falldown," a TI-83 calculator game that I used to play in high school, using the curses library in Python. It involves a forever falling ball that you have to ...
0
votes
2answers
207 views
Python: curses and the default black color
Why is this piece of python code not producing a normal black background color?
import curses
def func(stdscr):
c = stdscr.getkey()
curses.wrapper(func)
I really don't get it. I ...
-2
votes
2answers
40 views
iterm gnu bash visual corruption [closed]
When i paste a command in to bash and hit enter, the next lines prompt contains half of the previous issued command. E.G:
host:/Users/user $ some really long command pasted in
-bash: some: command ...
2
votes
0answers
84 views
Make curses program output persist in terminal scrollback history after program exits
I'm quite new to curses, so I'm trying out some different things in python.
I've initialized the window and set scrollok for the window object. I can add strings, and the scrolling works so that ...
1
vote
0answers
43 views
PDCurses resize_term arbitrarily fails or succeeds
I'm trying to resize the terminal window I've been printing in with PDCurses. It only works sometimes. Otherwise it just sets itself to the default size, not even returning an error.
Examples of ...
7
votes
1answer
227 views
Python console application - output above input line
I am trying to write a console application in Python3.
The problem is I would like all output messages EG: print("Status message") to be above the input line at the bottom.
Status message 1
Status ...
2
votes
1answer
629 views
How to create a menu and submenus in Python curses?
AFAIK, there is no curses menu extension available in Python yet so you have to roll your own solution. I know about this patch http://bugs.python.org/issue1723038 but I don't what's the current state ...
2
votes
1answer
205 views
Curses Difference between newwin and subwin
i don't seem to be able to find any informations about the difference between curses.newwin and curses.subwin
do you know any?
i'd like to have a screen divided in 3 different sections with ...
1
vote
2answers
171 views
Weird key values printed by ncurses
I am doing a little program in C with the ncurses library on Linux.
I decided to check the input I received with the getch() function, more specifically, the backspace key.
The backspace ASCII ...
1
vote
1answer
243 views
Print to standard console in curses
I'm building a python curses application.
I have two ways of printing to the curses window: print x, and windows.addstr(x) (and the other similar window.* options).
However, for debugging purposes, ...
1
vote
2answers
179 views
nodelay() causes python curses program to exit
I've written a curses program in python. It runs fine. However, when I use nodelay(), the program exits straight away after starting in the terminal, with nothing shown at all (just a new prompt).
...
0
votes
1answer
286 views
pdcurses linkage using Visual Studio 2010
This is doing my nut in. I'm just trying to include pdcurses (i.e. ncurses for windows) into a test program. Linkage though is failing.
Using Visual Studio 2010.
I'm fully aware of setting up the ...
1
vote
1answer
42 views
Can I implement a small subset of Curses in pure C++ (or any similar language) easily?
(I couldn't find anything related to this, as I don't know what keywords to search for).
I want a simple function - one that prints 3 lines, then erases the 3 lines and replaces with new ones. If it ...
2
votes
1answer
191 views
How to draw a graph from text file in bash?
I have a text file, each line of which contains two blank separated fields: x and y.
1 0
10 29
5 2
Now I would like to see the graph of y = f(x), where x and y are taken from the file.
I would ...
3
votes
1answer
144 views
Ruby Curses taking control of the enter key
I'm learning the Curses class and I'm having trouble taking control of the ENTER key. This is my code so far:
require 'curses'
win = Curses::Window.new(0, 0, 0, 0)
Curses.init_screen
...
0
votes
0answers
75 views
Curses Issue — Cursor Not Moving
I've implemented a main pad that houses some subpads. In order to give the cursor a reasonable default location within one of the subpads, I'm using the following code:
WINDOW *mainPad = ...
1
vote
0answers
64 views
Licensing using the python curses library [closed]
i am currently contributing to a GPL Project by extending a small python script. Is it possible to use the python curses module? Do I have to take care of any licensing issues?
More Information:
The ...
1
vote
0answers
55 views
problems with old c code with new ncurses version (ldat struct)
I have a problem with some code using curses after upgrading to a new server and thus also new software like libs, headers and such.
The problem is the use of the ldat struct fields "firstchar", ...
0
votes
2answers
127 views
Curses Library Backspace Issue
I'm attempting to implement deleting characters in a simple window that utilizes the Curses library.
Basically, the window gets created with the following code for the border:
box(local_win, 0 , 0); ...
