1

我一直在尝试 if 和 do while 语句的各种组合,但无法使其正常工作。我们使用 Visual Studio 2015 并使用 C 代码。代码的总体目标是使用 BGI 图形来模拟 2D 机器人(一个圆圈和一条线来指示方向)并使其执行各种任务。我被告知;

修改您的程序,以便您可以使用键盘控制您的机器人。

为此,您应该将初始速度初始化为 0,并在程序中添加适当的语句,以便根据按下的键来修改速度。例如,你可以

  • 按下 UP 键时增加固定常数 v
  • 按下 DOWN 键时将 v 减一固定常数
  • 当按下 RIGHT 键时减少一个固定常数的 w
  • 按下 LEFT 键时增加一个固定常数的 w
  • 使用另一个键停止机器人
#include <graphics.h> // includes BGI functions
#include <conio.h>
#include <math.h>
#include <stdio.h>

int main()
{
// this is a line of comment
// initialise a 500 X 300 pixels viewport (2D graphic window)
// don't modify the following lines of code
int gd, gm;
gd = CUSTOM;
gm = CUSTOM_MODE(500, 300);
initgraph(&gd, &gm, "");
int kbhit(), c = 0;
float c1, c2, c3, c4, alpha, theta;
int x, y, radius = 40, A, B;
int xvTL = 0, yvTL = 0, xvBR = 500, yvBR = 300;
int xTL = 0, yTL = 0, xBR = 50, yBR = 50;
int xv, yv, W, H; 
float v, w, dt, beta, sigma;
printf("Pixels of graph window (Bottom Right) = 500, 300. World coordinates (Bottom Right) set to 50, 50 \n");                 
printf("Enter a number for x: \n");
scanf("%d", &x);
printf("Enter a number for y: \n");
scanf("%d", &y);
W = xBR - xTL;
H = yTL - yBR;
xv = (x - xTL) * (500 / W);
yv = (yTL - y) * (300 / H);
printf("Coordinates(in viewport) = %d, %d \n", xv, yv);
printf("Enter an angle (in degrees) : \n");
scanf("%f", &alpha);
theta = (float)alpha * 3.1416 / 180;
printf("Angle (in radians) = %f \n", theta);
A = cos(theta) * radius;
B = sin(theta) * radius;
if ((alpha = 90), (0 < alpha < 90), (90 < alpha < 180), (180 < alpha < 270), (alpha = 270), (270 < alpha < 360))
    (B = sin(theta) * -radius);
else
    (B = sin(theta) * radius);
circle(xv, yv, radius);
line(xv, yv, xv + A, yv + B);
v = 0;
w = 0;
do {
    clearviewport();
    dt = 2;
    xv = xv + v * dt * cos(theta);
    yv = yv + v * dt * sin(theta);
    sigma = theta + dt * w; 
    beta = sigma * 180 / 3.1416;
    A = cos(sigma) * radius;
    B = sin(sigma) * radius;
    if ((beta = 90), (0 < beta < 90), (90 < beta < 180), (180 < beta < 270), (beta = 270), (270 < beta < 360))
        (B = sin(sigma) * -radius);
    else
        (B = sin(sigma) * radius);
    circle(xv, yv, radius);
    line(xv, yv, xv + A, yv + B); 
    delay(200);
    if (_kbhit()) {
        (c = _getch());
    }
    if (_kbhit()) {
        c1 = ++v;
        v = c1;
    }
    if (_kbhit()) {
        c2 = --v;
        v = c2;
    }
    if (_kbhit()) {
        c3 = ++w;
        w = c3;
    }
    if (_kbhit()) {
        c4 = --w;
        w = c4;
    }
} while (c != KEY_ESCAPE); (c1 = KEY_UP); (c2 = KEY_DOWN); (c3 = KEY_LEFT);  (c4 = KEY_RIGHT);

return 0;
}
4

1 回答 1

0

您需要一次调用 kbhit()。假设是常规功能,它会在调用时告诉您是否按下了某个键。因此,您只想在循环中调用它一次。

if(kbhit())
{
   ./* action to alter robot */
}
else
{
   /* no user moves, maybe robot still has momentum */
}

尝试将一些逻辑移出 main() 以及。

于 2017-03-01T23:12:30.110 回答