Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
299 views

Mysterious heisenbug?

So I'm making a snake game with teleports and the usual mice. I had a loop running like this: while(snake.alive() && miceEaten < micePerLevel) { displayInfo(lives, score, level, ...
4
votes
2answers
345 views

Curses for PHP on Windows

Is there a Windows equivalent of ncurses for PHP? I've created a CLI script and want to display various statistics (currently processed record, completion percentage etc.) in a nice way, without ...
3
votes
3answers
4k views

Console interface tutorials and tips (pdcurses)

I'm looking for tutorials on using PDCurses library. Unfortunately there is text only documentation, which is more like function reference. Are pdcurses similar enough to ncurses to use ncurses ...
2
votes
1answer
105 views

Can't convert from 'int' to 'int *'

So I have these lines of code: int maxY, maxX; getmaxyx(stdscr, &maxY, &maxX); It gives me the following error: error C2440: '=' : cannot convert from 'int' to 'int *' Conversion ...
1
vote
1answer
40 views

Check char at current/given position in PDCurses/NCurses

Is there a way to check which char is at a given position in the console window? For example if I want to check if there's an asterisk (*) at position (10, 12), how do I do that? Or if I use move(10, ...
1
vote
0answers
55 views

Disabling Windows Alt-Codes in PDCurses

I was using PDCurses, and noticed that the library specifically defines the Alt-Numpad buttons. When implementing these buttons, however, I found that while using getch(), once you release the Alt-key ...
1
vote
1answer
80 views

Unit testing with NUnit and Console

I've been playing around with the curses sharp library (a c# wrapper for pdcurses), writing some unit test code to get a handle on the api and how it works, and I've come up with a question. I can ...
1
vote
2answers
250 views

PDcurses displaying question marks in place of intended character

Ive got a problem with PDcurses displaying some symbols as ? instead of the proper character. I made a little test program to display code page 437 to determine which symbols were working and which ...
1
vote
2answers
354 views

PDCurses TUI C++ Win32 console app - Access violation reading location

I have downloaded pdcurses source and was able to successfully include curses.h in my project, linked the pre-compiled library and all good. After few hours of trying out the library, I saw the ...
1
vote
2answers
184 views

Is there a way to force a console application to run at a certain window size (using Pdcurses)?

I'm trying my hand at throwing together a minor roguelike in C++, but I've run into a problem - in order to get the game to display correctly, the console window has to be a bit wide (around 45 rows, ...
1
vote
1answer
778 views

Compiling pdcurses with mingw in XP SP3 problem

I am having a problem compiling pdcurses 3.4 in my machine. My OS is windows XP SP3. My mingw32-make is version 3.81. According to the readme file all I had to do was go and issue a make command to ...
1
vote
2answers
462 views

pdCurses use in Windows, messes with 3 gcc macros

I am making a very simple platform independent(at least that's the plan) console app. I changed from conio.h to pdCurses to make it happen. The problem with that is that in Windows, using Codeblocks ...
0
votes
0answers
19 views

(PD)Curses wscanw doens't read space from keyboard & language issue

Here is my simple code. #include <curses.h> #include <stdio.h> #include <Windows.h> int main(int argc, char *argv[]) { WINDOW *my_win; int startx, starty, width, height; ...
0
votes
0answers
55 views

menu.h && form.h doesn't exist in pdcurses

Writing C in Visual Studio 2010, I have downloaded the pdcurses34 from the sourceforge. After i compiled the lib for win32 as the documentation says i configured the visual studio to use this library. ...
0
votes
1answer
82 views

Menus library with PDCurses

I'm currently learning to program with NCurses/PDCurses by reading this tutorial: http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/ But when I get to chapter 17 which is about the menus library, I'm ...
0
votes
1answer
31 views

Installing PDCurses for Cygwin

I've been searching for a solution to do this for a while now, but still unsure. How do u install the PDCurses library in cygwin. I have the zip, I just don't know where to place the files. Is there ...
0
votes
1answer
164 views

How to run C++ program that use PDCurses on other computers?

I've recently started using PDCurses in a C++ game I'm working on. When I compile the program on my own machine (windows) and run the .exe, everything works as it should. When I take that .exe onto a ...
0
votes
1answer
86 views

Set background color of entire window in PDCurses

wattron and a color pair only sets the background color of text when it is printed inside a window. What is the best way to set the background color of the entire window without filling it with spaces ...
0
votes
0answers
62 views

Installing PDCurses on Mac OS X

I'm looking for a tutorial or some help on how to install PDCurses in Mac OS X. There doesn't seem to be much information on the internet about the subject. Also, a simple question: would a tutorial ...
0
votes
0answers
24 views

PdCurses addwstr() maximum string length? Way to retrieve error type?

I am using pdCurses in a project of mine and in printing a HUGE string addwstr() returns ERR and the string gets displayed wrongly. I tried just dividing it up and printing it with addwstr() but it ...
0
votes
0answers
67 views

Application using PDCurses SDL won't run

It compiles and links just fine, but then it crashes with SIGABRT. I am compiling using Xcode (on Mac OS X, of course.) I am linking with SDL.framework. Here's the crash report.
0
votes
0answers
60 views

Where can I find the version of the PDCurses library that uses an SDL window?

EDIT: I found it. This version needs to be compiled from source. I've seen programs using it, and I've heard of it, but I can't seem to find a download for it on the PDCurses website. The only thing ...
0
votes
2answers
216 views

How to make a console c++ text game that uses pdCurses portable

Hey so i've made a text game using the pdCurses library and microsoft opperating system tools and i would like to make it work on any computer. Here are my includes: #include <iostream> ...
0
votes
1answer
86 views

Strange problems [closed]

Alright so i'm making a vertical side scroller where you are an '8' character traveling downward while avoiding my randomly generated walls (the "generation" function) on the left and right sides of ...
0
votes
2answers
78 views

pdCURSES and addstr compatibility with strings problems

Hey so i'm trying to get addstr() in pdCurses to work (windows curses) with the preferred string class so I made the function the following string_to_80char() function, which is supposed to take a ...
0
votes
1answer
183 views

Linker warnings when using stdscr (ncurses)

Okay, so I'm getting these warnings whenever I try to use stdscr in pdcurses: LINK : warning LNK4098: defaultlib "LIBC" conflicts with use of other libs; use /NODEFAULTLIB:library LINK : warning ...
0
votes
2answers
580 views

KEY_ENTER vs '\n'?

When I'm using PDcurses and I try to have a while loop exit when the enter key is pressed with while(key != KEY_ENTER), the while loop never exits. However, when I try to have the same loop exit with ...
0
votes
2answers
146 views

How can I display variable strings using C++ and PDCurses?

I'm extremely sorry to post such an embarrassingly newbish question, but I haven't mucked around much with C++ since my college days and I think at some point I drank all that I knew about pointers ...
0
votes
3answers
903 views

How do I link PDCurses to a C++ application on Windows?

I'm building a C++ application and need to use PDCurses on Windows. I'm compiling with VC++ from MS VS 2005 and I'm getting a link error. error LNK2019: unresolved external symbol ...