控制台界面教程和提示 (pdcurses)
我正在寻找有关使用 PDCurses 库的教程。 不幸的是,只有文本文档,这更像是函数参考。 pdcurses 是否与 ncurses 足够相似以使用 ncurses 教程??? 关于制作控制台 UI 的任何提示???
附言。 PDCurses - mingw32。
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 tutorials??? Any tips for making console UI's ???
PS. PDCurses - mingw32.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您始终可以使用本教程用于 Ncurses,并更改 ncurses.h 中的 #include到curses.h以便使用pdcurses。
You can always use this tutorial for Ncurses, and change the #include from ncurses.h to curses.h in order to use pdcurses.
这个博客条目并不是我所说的教程,但它看起来像这可能是一个有趣的起点。 YouTube 上还提供了(非常非常基本的)视频教程。
This blog entry isn't anything I'd call a tutorial but it looks like it might be an interesting starting point. It is featuring a (very, very basic) video tutorial on YouTube as well.
我不知道 PDcurses 本身,但有了这样的名称,我希望它与curses兼容。 你检查过两者之间的API吗?
I do not know PDcurses itself but with such a name I'd expect it to be curses-compatible. Have you checked APIs between the two?