The pdcurses tag has no wiki summary.
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
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 ...
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 ...
0
votes
1answer
38 views
PDcurses release compile on VC++ fail
I have an application using PDCurses. It compiles fine under debug, but when I try to compile in release mode, I get the following error:
main.cpp(1): fatal error C1083: Cannot open include file: ...
0
votes
1answer
324 views
PDCurses Win32a — how to build on Windows 7
PDCurses-Win32a quite clearly claims that its implementation of init_color() works on Windows; but when I built it as a DLL in a Visual Studio project (after nmake failed, saying it couldn't find ...
1
vote
1answer
131 views
PDCurses and DOS codepage 437
I'm using PDCurses version 3.4 for Windows; it's compiling and running properly, but I can't get it to display the IBM Extended Ascii characters from Codepage 437 (although the console is running in ...
0
votes
0answers
106 views
PDcurses scrolling window with pad
So after trying and trying to make a window in pdcurses to scroll back to history i came across with this code finally.
int main()
{
HANDLE stdinInput = 0;
DWORD numEvents = ...
0
votes
2answers
309 views
How to statically link a library in MSVC?
I am compiling my program in Microsoft Visual C++ 10, and it uses the PDCurses library. I have configured it to link against pdcurses.lib but when I try to run the application the system complains ...
1
vote
0answers
84 views
windows pdcurses win32a non-english keyboard
When using the pdcurses windows port win32a (link here) I'm having trouble getting my non-english (in this case swedish) keyboard to work with characters outside the 0-9, a-z and A-Z range.
Example: ...
0
votes
1answer
319 views
How to display “OEM extended ASCII” characters with PDCurses?
I've been trying to display the "box characters" using PDCurses but for some reason they are not available in the character set. I used a loop to print all characters from 0x00 to 0xFF (through a call ...
0
votes
1answer
553 views
How do I install PDCurses in Windows for use with C++?
I want to use it in some of my programs instead of the standard IOStream.
Also, does NCurses work on Windows, and if so, any better?
2
votes
1answer
343 views
How do I turn off or ignore key repeat for my curses application?
So I recently found curses (specifically PDcurses) and I'm just getting into it. Right now I'm trying to write a little space shooter type game with it and it's worked fine so far for rendering and ...
0
votes
1answer
83 views
PDCurses blank character
I am trying to create a rougelike, and I am using windows for the different layers. The bottom most one is the map, and the one above that is the entity layer. I have the player character, and I want ...
1
vote
1answer
346 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, ...
0
votes
1answer
216 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
406 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 ...
1
vote
0answers
141 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 ...
0
votes
1answer
188 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
724 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 ...
1
vote
1answer
228 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
1answer
202 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
2answers
430 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
2answers
202 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 ...
1
vote
2answers
358 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 ...
5
votes
4answers
437 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, ...
1
vote
2answers
595 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 ...
0
votes
1answer
267 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 ...
2
votes
1answer
329 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
2answers
2k 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 ...
5
votes
2answers
605 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 ...
1
vote
3answers
353 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, ...
0
votes
2answers
231 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 ...
1
vote
1answer
1k 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 ...
2
votes
2answers
633 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 ...
4
votes
3answers
7k 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 ...
0
votes
3answers
1k 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 ...