Giter Site home page Giter Site logo

Comments (5)

wmcbrine avatar wmcbrine commented on May 23, 2024

Since it works in the general case (see the “testcurs” demo), I need a complete example program that works under ncurses and not under PDCurses.

from pdcurses.

jpcima avatar jpcima commented on May 23, 2024

Yes. I should have posted full context in the initial post, this is the project and relevant source file.
If it is not very helpful, I'll try to recreate it later into a smaller test case.

I'm going to look at the demo code following your suggestion and compare. Maybe pdcurses is sensitive to initialization order in ways that ncurses isn't.

from pdcurses.

jpcima avatar jpcima commented on May 23, 2024

I believe I have managed to reproduce a color problem out of the program.
Test case

This program will give two different color outputs in pdcurses and ncurses.
Ncurses backgrounds output in blue, like asked, whereas pdcurses outputs in red.

testcase

from pdcurses.

wmcbrine avatar wmcbrine commented on May 23, 2024

Yeah, that one's got nothing to do with init_color() per se, but with mixing symbolic and numeric color references (numeric in your init_color() calls, and symbolic in init_pair()). See, by default, PDCurses defines COLOR_BLUE as 1, and COLOR_RED as 4, while ncurses defines COLOR_RED as 1 and COLOR_BLUE as 4. You can change PDCurses' behavior by defining PDC_RGB at build time.

This is handled in testcurs via the colors[] table in colorTest(), which is just a list of the color symbols in the desired order, with init_pair() and init_color() referencing colors[i] instead of just i.

from pdcurses.

jpcima avatar jpcima commented on May 23, 2024

It works now! I have defined PDC_RGB and the colors are in order.
Thanks for your help. 👍
I close this issue since there isn't actually a bug.

from pdcurses.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.