- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试编译 Clam-NetworkEditor-1.4.0 时出现以下错误:
在 src/widgets/generated/moc_QFirstPerson.cxx:10:0 包含的文件中:src/widgets/generated/../QFirstPerson.hxx:348:15: 错误:函数定义没有声明参数src/widgets/generated/../QFirstPerson.hxx:在成员函数‘virtual void QFirstPerson::paintScene()’中:src/widgets/generated/../QFirstPerson.hxx:202:21: error: ‘((QFirstPerson*)this)->QFirstPerson::sphere’ 不能用作函数src/widgets/generated/../QFirstPerson.hxx:在成员函数‘void QFirstPerson::drawLight(float*, float*, const char*, const QColor&)’中:src/widgets/generated/../QFirstPerson.hxx:231:20: error: ‘((QFirstPerson*)this)->QFirstPerson::sphere’ 不能用作函数scons: * [src/widgets/generated/generated/moc_QFirstPerson.os] 错误 1scons:构建因错误而终止。
这是来自 QFirstPerson.hxx 的代码
#ifndef QFirstPerson_hxx
#define QFirstPerson_hxx
#include <QtOpenGL/QGLWidget>
#undef GetClassName
#include <QtGui/QKeyEvent>
#include <iostream>
#include <cmath>
#include <GL/glu.h>
static float * vColor(const QColor & color)
{
static float vcolor[4];
vcolor[0]=color.redF();
vcolor[1]=color.greenF();
vcolor[2]=color.blueF();
vcolor[3]=color.alphaF();
return vcolor;
}
class Light
{
unsigned _index;
QColor _ambient;
QColor _specular;
QColor _diffuse;
float _position[4];
float _direction[4];
int _cutoff;
float _exponent;
bool _enabled;
public:
Light(unsigned index,
float * position, float * direction,
int cutoff,
float exponent,
const QColor & diffuse=Qt::white,
const QColor & specular=Qt::white,
const QColor & ambient=Qt::black)
: _index(index)
, _ambient(ambient)
, _specular(specular)
, _diffuse(diffuse)
, _cutoff(cutoff)
, _exponent(exponent)
, _enabled(true)
{
for (unsigned i=0; i<4; i++) _position[i]=position[i];
for (unsigned i=0; i<4; i++) _direction[i]=direction[i];
}
void place()
{
glLightfv(GL_LIGHT0+_index, GL_AMBIENT, vColor(_ambient));
glLightfv(GL_LIGHT0+_index, GL_DIFFUSE, vColor(_diffuse));
glLightfv(GL_LIGHT0+_index, GL_SPECULAR, vColor(_specular));
glLightfv(GL_LIGHT0+_index, GL_SPOT_DIRECTION, _direction);
glLightfv(GL_LIGHT0+_index, GL_POSITION, _position);
glLighti (GL_LIGHT0+_index, GL_SPOT_CUTOFF, _cutoff);
glLightf (GL_LIGHT0+_index, GL_SPOT_EXPONENT, _exponent);
glLightf (GL_LIGHT0+_index, GL_CONSTANT_ATTENUATION, 1.0f);
glLightf (GL_LIGHT0+_index, GL_LINEAR_ATTENUATION, 0.2f);
glLightf (GL_LIGHT0+_index, GL_QUADRATIC_ATTENUATION, 0.0f);
(*(_enabled? &glEnable:&glDisable) )(GL_LIGHT0+_index);
}
};
class QFirstPerson : public QGLWidget
{
double _viewX;
double _viewY;
double _viewRotation;
double _viewElevation;
double _sourceX;
double _sourceY;
double _sphere;
GLUquadric * sphere;
Q_OBJECT
public:
QFirstPerson(QWidget * parent=0)
: QGLWidget(parent)
, _viewX(0)
, _viewY(-1)
, _viewRotation(0)
, _viewElevation(0)
, _sourceX(0)
, _sourceY(0)
, _sphere(0)
{
}
void initializeGL()
{
std::cout << "init" << std::endl;
glEnable(GL_TEXTURE_2D);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glShadeModel(GL_SMOOTH);
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glEnable(GL_DEPTH_TEST);
glEnable(GL_COLOR_MATERIAL);
glDepthFunc(GL_LESS);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
bool blend = true;
if (blend) glEnable(GL_BLEND);
bool ligth = true;
if (ligth) glEnable(GL_LIGHTING);
}
void resizeGL(int width, int height)
{
std::cout << "resize" << std::endl;
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(90.0f, (GLfloat)width / (GLfloat)height, 0.01f, 1250.0f);
glMatrixMode(GL_MODELVIEW);
}
void paintGL()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
glPushMatrix();
glRotatef( -_viewElevation, 1.0f, 0.0f, 0.0f);
glRotatef(180-_viewRotation, 0.0f, 1.0f, 0.0f);
glTranslatef(-_viewX, 0, -_viewY); // y is at z
placeLights();
paintScene();
glPopMatrix();
glDepthFunc(GL_NONE);
paintDecoration();
}
virtual void placeLights()
{
glLightModelfv(GL_LIGHT_MODEL_AMBIENT, vColor("#505060"));
static GLfloat position0[] = { 0.0f, 1.5f, 0.0f, 1.0f };
static GLfloat direction0[] = { 0.0f, -0.5f, 0.0f, 1.0f };
Light light0(0, position0, direction0, 90, 2, "#555", "#555", "#555");
light0.place();
static GLfloat position1[] = { -5.0f, 1.0f, 5.0f, 1.0f };
static GLfloat direction1[] = { .5f, -.5f, -.5f, 1.0f };
Light light1(1, position1, direction1, 90, 2, "#700", "#770", "#700");
light1.place();
static GLfloat position2[] = { 5.0f, 1.0f, -5.0f, 1.0f };
static GLfloat direction2[] = { -1.0f/5, -1.0f/5, 1.0f, 1.0f };
Light light2(2, position2, direction2, 90, 2, "#077", "#007", "#077");
light2.place();
drawLight(position0, direction0, "Light0", "#777");
drawLight(position1, direction1, "Light1", "#a00");
drawLight(position2, direction2, "Light2", "#0aa");
}
void roomWall(float bottom, float top)
{
glBegin(GL_QUAD_STRIP);
for (unsigned i=0; i<20; i++)
{
glVertex3f(10.f-i,top,10.f);
glVertex3f(10.f-i,bottom,10.f);
}
for (unsigned i=0; i<20; i++)
{
glVertex3f(-10.f,top,10.f-i);
glVertex3f(-10.f,bottom,10.f-i);
}
for (unsigned i=0; i<20; i++)
{
glVertex3f(-10.f+i,top,-10.f);
glVertex3f(-10.f+i,bottom,-10.f);
}
for (unsigned i=0; i<20; i++)
{
glVertex3f(10.f,top,-10.f+i);
glVertex3f(10.f,bottom,-10.f+i);
}
glVertex3f(10.f,top,10.f);
glVertex3f(10.f,bottom,10.f);
glEnd();
}
virtual void paintScene()
{
glMaterialfv(GL_FRONT, GL_DIFFUSE, vColor("white"));
glMaterialfv(GL_FRONT, GL_AMBIENT, vColor("white"));
glMaterialfv(GL_FRONT, GL_SPECULAR, vColor("#333"));
glMaterialf(GL_FRONT, GL_SHININESS, 0);
glColor4fv(vColor(Qt::white));
roomWall(-1.75, -1);
roomWall(-1, 0);
roomWall(0, 1);
roomWall(1, 1.75);
qglColor(Qt::yellow);
drawPlane(-1.75);
glColor4fv(vColor("#aaa"));
drawPlane(+1.75);
qglColor(QColor("#ffa"));
renderText(0., 1, 10.-1, "North (+Y)");
renderText(0., 1, -10.+1, "South (-Y)");
renderText(10.-1, 1, 0., "East (+X)");
renderText(-10.+1, 1, 0., "West (-X)");
glPushMatrix();
glColor4fv(vColor("#b22"));
glTranslatef(_sourceX,0,_sourceY);
renderText(0., 1, 0., "Source");
glBegin(GL_LINES);
glVertex3f(0.,1.,0.);
glVertex3f(0.,0.,0.);
glEnd();
gluSphere(sphere(), 0.5f, 40, 20);
glPopMatrix();
}
void drawPlane(float height)
{
for (unsigned j=0; j<20; j++)
{
glBegin(GL_QUAD_STRIP);
for (unsigned i=0; i<=20; i++)
{
glVertex3f(10.f-j,height,10.f-i);
glVertex3f(10.f-(j+1),height,10.f-i);
}
glEnd();
}
}
void drawLight(float * position, float * direction, const char * label, const QColor & color)
{
glPushMatrix();
glColor4fv(vColor(color));
glTranslatef(position[0],position[1],position[2]);
renderText(0., 2, 0., label);
glMaterialfv(GL_FRONT, GL_EMISSION, vColor(color));
glBegin(GL_LINES);
glVertex3f(0.,0.,0.);
glVertex3fv(direction);
glVertex3f(0.,2.,0.);
glVertex3f(0.,0.,0.);
glEnd();
gluSphere(sphere(), 0.2f, 40, 20);
glMaterialfv(GL_FRONT, GL_EMISSION, vColor("black"));
glPopMatrix();
}
virtual void paintDecoration()
{
glDisable(GL_LIGHTING);
glDisable(GL_DEPTH_TEST);
QString emiterString = tr("Emitter: %1, %2")
.arg(QString::number(_sourceX,'d',2))
.arg(QString::number(_sourceY,'d',2))
;
QString receiverString = tr("Receiver: %1, %2 angle %3")
.arg(QString::number(_viewX,'d',2))
.arg(QString::number(_viewY,'d',2))
.arg(QString::number(_viewRotation,'d',0))
;
glColor4fv(vColor("black"));
renderText(10,20, receiverString);
renderText(10,40, emiterString);
glBegin(GL_LINES);
glVertex3f(0,.06,-.1);
glVertex3f(0,.02,-.1);
glVertex3f(0,-.06,-.1);
glVertex3f(0,-.02,-.1);
glVertex3f(.06,0,-.1);
glVertex3f(.02,0,-.1);
glVertex3f(-.06,0,-.1);
glVertex3f(-.02,0,-.1);
glEnd();
glEnable(GL_LIGHTING);
glEnable(GL_DEPTH_TEST);
}
void keyPressEvent( QKeyEvent * event)
{
std::cout << "key" << std::endl;
float cosOrientation = std::cos(_viewRotation*M_PI/180.f);
float sinOrientation = std::sin(_viewRotation*M_PI/180.f);
bool strafe = event->modifiers() & Qt::AltModifier;
bool run = event->modifiers() & Qt::ShiftModifier;
float step = run ? .4f : .1f;
switch (event->key())
{
case Qt::Key_Left:
if (strafe)
{
_viewX += cosOrientation * step;
_viewY -= sinOrientation * step;
emitPositionChange();
}
else
{
_viewRotation+=10;
emit orientationChanged(_viewRotation);
}
break;
case Qt::Key_Right:
if (strafe)
{
_viewX -= cosOrientation * step;
_viewY += sinOrientation * step;
emitPositionChange();
emit posChanged(QPointF(_viewX, _viewY));
}
else
{
_viewRotation-=10;
emit orientationChanged(_viewRotation);
}
break;
case Qt::Key_PageUp:
_viewElevation+=10;
break;
case Qt::Key_PageDown:
_viewElevation-=10;
break;
case Qt::Key_Up:
_viewX += sinOrientation * step;
_viewY += cosOrientation * step;
emitPositionChange();
break;
case Qt::Key_Down:
_viewX -= sinOrientation * step;
_viewY -= cosOrientation * step;
emitPositionChange();
break;
case Qt::Key_A:
_sourceX+=step;
break;
case Qt::Key_D:
_sourceX-=step;
break;
case Qt::Key_W:
_sourceY+=step;
break;
case Qt::Key_S:
_sourceY-=step;
break;
case Qt::Key_Escape:
close();
break;
default:
event->ignore();
return;
return;
}
while (_viewRotation>=360.f) _viewRotation-=360.f;
while (_viewRotation<0.f) _viewRotation+=360.f;
event->accept();
updateGL();
}
signals:
double posChanged(QPointF point);
double xPosChanged(double x);
double yPosChanged(double y);
double orientationChanged(double degrees);
private:
GLUquadric * sphere
{
if (!_sphere) _sphere = gluNewQuadric();
return _sphere;
}
void emitPositionChange()
{
emit posChanged(QPointF(_viewX, _viewY));
emit xPosChanged(_viewX);
emit yPosChanged(_viewY);
}
};
#endif// QFirstPerson_hxx
最佳答案
你有这个声明
class QFirstPerson : public QGLWidget
{
double _viewX;
double _viewY;
double _viewRotation;
double _viewElevation;
double _sourceX;
double _sourceY;
double _sphere;
GLUquadric * sphere; // <--
但是后来这段代码
gluSphere(sphere(), 0.5f, 40, 20);
假设 sphere
是可调用的。编译器不同意。
关于c++ - clam-NetworkEditor 编译失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12252327/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!