0

我正在开发一个在 x 窗口上绘制形状的事件驱动项目。每当我在屏幕上单击鼠标时,都会生成 x 和 y 的新值。我的问题是:假设每次单击鼠标时都会生成 x 和 y 的新值,我如何在下面的代码中存储不同的 x 和 y 值。

int x, y;
x = report.xbutton.x;
y = report.xbutton.y;

if (report.xbutton.button == Button1) {
    XFillArc(display_ptr, win, gc_red, 
             x - win_height/80, y - win_height/80,
             win_height/60, win_height/60, 0, 360*64);
}
4

1 回答 1

0

代码的一个版本可能是:

typedef struct Position
{
    int x;
    int y;
} Position;

typedef struct PosnList
{
    size_t     num_pts;
    size_t     max_pts;
    Position  *points;
} PosnList;

void add_point(int x, int y, PosnList *p)
{
    if (p->num_pts >= p->max_pts)
    {
        size_t new_num = (p->max_pts + 2) * 2;
        Position *new_pts = realloc(p->points, new_num * sizeof(Position));
        if (new_pts == 0)
            ...handle out of memory error...
        p->max_pts = new_num;
        p->points  = new_pts;
    }
    p->points[p->num_pts++] = (Position){ x, y };
}

void zap_posnlist(PosnList *p)
{
     free(p->points);
     p->num_pts = 0;
     p->max_pts = 0;
     p->points  = 0;
}

然后你的代码会做:

int x, y;
x = report.xbutton.x;
y = report.xbutton.y;

if (report.xbutton.button == Button1) {
    XFillArc(display_ptr, win, gc_red, 
             x - win_height/80, y - win_height/80,
             win_height/60, win_height/60, 0, 360*64);
    add_point(x, y, &positions);
}

你在哪里有一个变量:

PosnList positions = { 0, 0, 0 };

请注意,该add_point()函数用于realloc()执行初始内存分配和增量内存分配。该代码使用 C99 复合文字将值分配给数组中xy下一个。Position如果你没有 C99,你需要做两个单独的作业。

zap_posnlist()函数释放一个先前初始化的PosnList. 你可能仍然需要一个正式的初始化函数——除非你乐于在PosnList xxx = { 0, 0, 0 };任何地方使用这个符号。

这段代码现在已经被 GCC 清理过了;原始版本不是,并且其中存在错误 - 导致编译器错误的错误。


测试代码——请注意,这"stderr.h"不是标准的标头,而是我习惯使用的错误报告代码。它提供err_error()err_setarg0()功能。

#include <stdlib.h>
#include "stderr.h"

typedef struct Position
{
    int x;
    int y;
} Position;

typedef struct PosnList
{
    size_t     num_pts;
    size_t     max_pts;
    Position  *points;
} PosnList;

extern void add_point(int x, int y, PosnList *p);
extern void zap_posnlist(PosnList *p);

void add_point(int x, int y, PosnList *p)
{
    if (p->num_pts >= p->max_pts)
    {
        size_t new_num = (p->max_pts + 2) * 2;
        Position *new_pts = realloc(p->points, new_num * sizeof(Position));
        if (new_pts == 0)
            err_error("Out of memory (%s:%d - %zu bytes)\n",
                       __FILE__, __LINE__, new_num * sizeof(Position));
        p->max_pts = new_num;
        p->points  = new_pts;
    }
    p->points[p->num_pts++] = (Position){ x, y };
}

void zap_posnlist(PosnList *p)
{
    free(p->points);
    p->num_pts = 0;
    p->max_pts = 0;
    p->points  = 0;
}

#include <stdio.h>

int main(int argc, char **argv)
{
    PosnList positions = { 0, 0, 0 };

    err_setarg0(argv[0]);

    if (argc > 1)
        srand(atoi(argv[1]));

    for (size_t i = 0; i < 37; i++)
        add_point(rand(), rand(), &positions);

    for (size_t i = 0; i < positions.num_pts; i++)
        printf("%2zu: (%5d, %5d)\n", i, positions.points[i].x, positions.points[i].y);

    zap_posnlist(&positions);
    return(0);
}

stderr.h如果您想要 和 的来源,请与我联系(查看我的个人资料)stderr.c

于 2012-09-26T13:53:26.863 回答