GLFW 和代码块
Posted
技术标签:
【中文标题】GLFW 和代码块【英文标题】:GLFW and codeblocks 【发布时间】:2011-10-22 00:35:27 【问题描述】:我在代码块 10.05 识别我机器上的 GLFW 库时遇到了一些困难。当我创建一个空项目并复制粘贴此 GLFW 教程中的代码时 >> http://content.gpwiki.org/index.php/GLFW:Tutorials:Basics
#include <stdlib.h>
#include <GL/glfw.h>
void Init(void);
void Shut_Down(int return_code);
void Main_Loop(void);
void Draw_Square(float red, float green, float blue);
void Draw(void);
float rotate_y = 0,
rotate_z = 0;
const float rotations_per_tick = .2;
int main(void)
Init();
Main_Loop();
Shut_Down(0);
void Init(void)
const int window_width = 800,
window_height = 600;
if (glfwInit() != GL_TRUE)
Shut_Down(1);
// 800 x 600, 16 bit color, no depth, alpha or stencil buffers, windowed
if (glfwOpenWindow(window_width, window_height, 5, 6, 5,
0, 0, 0, GLFW_WINDOW) != GL_TRUE)
Shut_Down(1);
glfwSetWindowTitle("The GLFW Window");
// set the projection matrix to a normal frustum with a max depth of 50
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
float aspect_ratio = ((float)window_height) / window_width;
glFrustum(.5, -.5, -.5 * aspect_ratio, .5 * aspect_ratio, 1, 50);
glMatrixMode(GL_MODELVIEW);
void Shut_Down(int return_code)
glfwTerminate();
exit(return_code);
void Main_Loop(void)
// the time of the previous frame
double old_time = glfwGetTime();
// this just loops as long as the program runs
while(1)
// calculate time elapsed, and the amount by which stuff rotates
double current_time = glfwGetTime(),
delta_rotate = (current_time - old_time) * rotations_per_tick * 360;
old_time = current_time;
// escape to quit, arrow keys to rotate view
if (glfwGetKey(GLFW_KEY_ESC) == GLFW_PRESS)
break;
if (glfwGetKey(GLFW_KEY_LEFT) == GLFW_PRESS)
rotate_y += delta_rotate;
if (glfwGetKey(GLFW_KEY_RIGHT) == GLFW_PRESS)
rotate_y -= delta_rotate;
// z axis always rotates
rotate_z += delta_rotate;
// clear the buffer
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// draw the figure
Draw();
// swap back and front buffers
glfwSwapBuffers();
void Draw_Square(float red, float green, float blue)
// Draws a square with a gradient color at coordinates 0, 10
glBegin(GL_QUADS);
glColor3f(red, green, blue);
glVertex2i(1, 11);
glColor3f(red * .8, green * .8, blue * .8);
glVertex2i(-1, 11);
glColor3f(red * .5, green * .5, blue * .5);
glVertex2i(-1, 9);
glColor3f(red * .8, green * .8, blue * .8);
glVertex2i(1, 9);
glEnd();
void Draw(void)
// reset view matrix
glLoadIdentity();
// move view back a bit
glTranslatef(0, 0, -30);
// apply the current rotation
glRotatef(rotate_y, 0, 1, 0);
glRotatef(rotate_z, 0, 0, 1);
// by repeatedly rotating the view matrix during drawing, the
// squares end up in a circle
int i = 0, squares = 15;
float red = 0, blue = 1;
for (; i < squares; ++i)
glRotatef(360.0/squares, 0, 0, 1);
// colors change for each square
red += 1.0/12;
blue -= 1.0/12;
Draw_Square(red, .6, blue);
并使用代码块编译它会返回此错误:
/home/user/Graphics/Project_2/test.c|27|undefined reference to `glfwInit'|
/home/user/Graphics/Project_2/test.c|30|undefined reference to `glfwOpenWindow'|
......
.....
....
...
但是当我创建一个简单的 *.c 文件并使用 :
编译它时gcc myprog.c -o myprog -lglfw -lGL -lpthread
它有效.. 如何使代码块与 GLFW 一起使用? 谢谢
【问题讨论】:
【参考方案1】:按照以下步骤操作。
-
首先从 here 下载 GLFW。
解压压缩包
从include文件夹中复制glfw.h文件并粘贴到文件夹“C:\Program Files\CodeBlocks\MinGW\include\GL”
从 lib_mingw 文件夹中复制所有文件(libglfw.a 和 libglfwdll.a)
并粘贴到文件夹“C:\Program Files\CodeBlocks\MinGW\lib”
解压文件lib_mingw文件夹中的glfw.dll文件并粘贴
在“C:\Windows\System32”文件夹内。如果您不喜欢将其保存在 system32 中,则可以将其与项目 exe 文件一起保存。
现在在 code::blocks 中创建 GLFW 项目时,为 glfw 位置提供路径 C:\Program Files\CodeBlocks\MinGW"
如果您再次感到困惑,请转到here 了解逐步过程以及每个步骤的图像。
【讨论】:
GLFW zip 包含两个 mingw 文件夹:lib-mingw
和 lib-mingw-w64
。我应该使用哪一个? (使用从 Web 安装程序安装的 MinGW 的 Windows 10 64 位(无论是什么版本)。
当前使用 glfw 的代码块在尝试从模板创建项目时出现错误【参考方案2】:
确保您拥有正确类型的 glfw 库。即用于您的 mingw 编译器的 x86 或 x64。 8 小时搜索未定义的引用错误,即 glfw 的链接器问题。
【讨论】:
我怀疑这是我正在寻找的解决方案。我在 Windows 64 位上,通过 mingw 安装程序安装了 mingw(是 32 位还是 64 位?)。【参考方案3】:请遵循以下说明: http://codeincodeblock.blogspot.com/2011/02/setup-glfw-project-in-codeblock.html
【讨论】:
欢迎来到 Stack Overflow!虽然这在理论上可以回答这个问题,it would be preferable 在这里包括答案的基本部分,并提供参考链接。【参考方案4】:我之前在将 GLFW 导入代码块时遇到了类似的问题,最近我发现了一些对我有用的东西。
我可以看到您已经正确完成了标头安装,但我会将其包含在此响应中,以便您可以仔细检查一切是否处于最佳状态。
我还建议您使用 glfw.org 的“文档”选项卡中的示例代码。它对我来说非常有效,所以我想你也可以。
由于您使用的是 GLFW,我假设您想在您的应用程序中使用 OpenGL,因此我将在教程中包含 OpenGL 的安装
A.创建相关文件夹
您需要做的第一件事是为系统上的库文件和头文件设置一个位置。您可以在驱动器上的指定位置创建这些文件夹,也可以在您的 code::blocks 项目中创建这些文件夹。
就我而言,我在我的 code::blocks 项目文件夹中创建了一个“lib”和“head”文件夹。
B.下载和安装必要的媒体
GLFW:
-
前往 GLFW.org,然后点击“下载”。
单击“32 位 Windows 二进制文件”,然后打开下载的 zip 文件中的“glfw-version.bin.WIN32”。
打开“include”文件夹并将随附的 GLFW 文件夹复制到您在 A 部分中创建的“head”文件夹中。
再次打开“glfw-version.bin.WIN32”,然后选择与您的编译器对应的“lib”文件夹。因为我使用的是 MinGW GCC 编译器,所以我选择了“lib-mingw”。要找到您的编译器,请转到 code::blocks,单击设置,然后单击“编译器...”。您的编译器位于出现的窗口的“选定编译器”部分。
找到要使用的“lib”文件夹后,打开它,并将其中的所有文件复制到您在 A 部分中创建的“lib”文件夹中。
GLEW(OpenGL):
-
转到this链接
打开下载的 zip 中的文件夹。
转到“lib”,然后释放,然后是 Win32,并将其中的所有文件复制到您在步骤 A 中创建的“lib”文件夹中。
返回到下载的 zip 中的文件夹。
进入“include”目录,将“GL”文件夹复制到a部分创建的“head”文件夹中。
此时,您的“head”文件夹应包含“GLFW”和“GL”文件夹,“lib”文件夹应包含“glew32”、“glew32s”以及 GLFW 中用于编译器的所有库文件.
C.配置你的代码::blocks 项目
-
打开项目后,右键单击工作区中的项目名称,然后点击“构建选项...”
在出现的窗口左侧,确保选择了“调试”。
接下来单击“链接器设置”选项卡,并添加以下库:“glfw.3”、“gdi32”和“opengl32”。
接下来,在“搜索目录”选项卡中,选择“编译器”选项卡。
将路径添加到“head”文件夹。如果头文件夹是在您的项目文件夹中创建的,您只需输入“头”
同样在“搜索目录”选项卡中,选择“链接器”选项卡。
将路径添加到“lib”文件夹。同样,如果 lib 文件夹是使用您的项目文件夹创建的,您只需输入“lib”即可。
点击窗口底部的“确定”。
D.构建并运行您的代码:)!希望这可以帮助!
【讨论】:
以上是关于GLFW 和代码块的主要内容,如果未能解决你的问题,请参考以下文章