使用新的ncurses版本(ldat struct)的旧c代码的问题

时间:2012-11-30 08:42:03

标签: c ncurses curses

在升级到新服务器之后,使用curses的一些代码出现了问题,因此还有libs,header等新软件。 问题是使用了ldat结构字段“firstchar”,“lastchar”和“text”,它们在较新版本的curses.h中隐藏在curses.priv.h中,因此它们无法解析。

我真的可以使用一些指示来了解我如何解决这些问题。

下面的代码表示结构字段的使用,但它只是完整代码的一部分,因为它有几千行......

如果需要额外的代码,我可以添加它。

我可能还补充一点,我自己没有制作这个程序,我只负责让它与我们的新服务器一起工作......

int
update_window(changed, dw, sw, win_shared)
bool *changed;
WINDOW *dw;         /* Destination window */
window_t *sw;       /* Source window */
bool win_shared;
{
    int y, x;
    int yind, nx, first, last;
    chtype *pd, *ps;    /* pd = pointer destination, ps = pointer source */
    int nscrolls;       /* Number of scrolls to make */


    if(! sw->changed) {
        *changed = FALSE;
        return(0);
    }
    /****************************************
    * Determine number of times window is 
    * scrolled since last update
    ****************************************/
    nscrolls = sw->scrollcount; if(nscrolls >= sw->ny)
    nscrolls = 0;

    sw->scrollcount = 0L;

    dw->_flags = _HASMOVED;
    dw->_cury = sw->cury;
    dw->_curx = sw->curx;

    if(nscrolls > 0) {
        /* Don't copy lines that is scolled away */
        for(y = nscrolls; y < sw->ny; y++) {
            yind = GETYIND(y - nscrolls, sw->toprow, sw->ny);
            if(sw->lastch[yind] != _NOCHANGE) {
                first = dw->_line[y].firstchar = sw->firstch[yind];
                last = dw->_line[y].lastchar = sw->lastch[yind];

                ps = &sw->screen[yind][first];
                pd = (chtype *)&dw->_line[y].text[first];
                nx = last - first + 1;

                LOOPDN(x, nx)
                    d++ = *ps++;

                if(! win_shared) {
                    sw->firstch[yind] = sw->nx;
                    sw->lastch[yind] = _NOCHANGE;
                }
            }
        }
    } else {
        LOOPUP(y, sw->ny) {
            yind = GETYIND(y, sw->toprow, sw->ny);
            if(sw->lastch[yind] != _NOCHANGE) {
                first = dw->_line[y].firstchar = sw->firstch[yind];
                last = dw->_line[y].lastchar = sw->lastch[yind];

                ps = &sw->screen[yind][first];
                pd = (chtype *)&dw->_line[y].text[first];
                nx = last - first + 1;

                LOOPDN(x, nx)
                    *pd++ = *ps++;

                if(! win_shared) {
                    sw->firstch[yind] = sw->nx;
                    sw->lastch[yind] = _NOCHANGE;
                }
            }
        }

        if(! win_shared)
            sw->changed = FALSE;
    }

    *changed = TRUE;
    return(nscrolls);
}

我感谢所有帮助!

1 个答案:

答案 0 :(得分:0)

struct ldat的成员在June 2001中被隐私。阅读函数及其提及 scrolls 提示它正在编写一些窗口的一部分用于模拟滚动(通过将一组行写入实际窗口),并试图绕过ncurses逻辑检查更改的行。

对于这样的函数,唯一的解决方案是确定开发人员正在尝试做什么,并编写一个新函数来执行此操作 - 使用提供的库函数。