文档详情

opengl 3d实例源代码 opengl 3D迷宫 C++实现 源代码.doc

发布:2017-01-10约1.67万字共43页下载文档
文本预览下载声明
opengl 3d实例源代码 opengl 3D迷宫 C++实现 源代码 导读:就爱阅读网友为您分享以下“opengl 3D迷宫 C++实现 源代码”的资讯,希望对您有所帮助,感谢您对92的支持! #include quot;stdafx.hquot;#include lt;stdio.hgt;#include lt;stdlib.hgt;#include lt;GL/glut.hgt;#include lt;math.hgt;#include lt;iostreamgt;using namespace std;void drawwalls(void);void drawtop(void);void drawball(void);#define IDM_APPLICATION_EXIT (101)#define IDM_APPLICATION_TEXTURE (102)#define IDM_APPLICATION_BANK (103)#define MAZE_HEIGHT (16)#define MAZE_WIDTH (16)#define STARTING_POINT_X (13.5f);#define STARTING_POINT_Y (1.5f);#define STARTING_HEADING (90.0f);float player_x = STARTING_POINT_X ;float player_y = STARTING_POINT_Y ;float player_h = STARTING_HEADING ; // player#39;s headingfloat player_s = 0.0f; // forward speed of the playerfloat player_m = 1.0f; // speed multiplier of the playerfloat player_t = 0.0f; // player#39;s turning (change in heading)float player_b = 0.0f; // viewpoint bank (roll)static float texcoordX=0.0f;int walllist=0;int mazelist=0;int balllist=0;int status=1;bool searchroute=false;bool keystate[4]={false,false,false,false};char mazedata[MAZE_HEIGHT][MAZE_WIDTH] = {{#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;,#39;H#39;},{#39;H#39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39;H#39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39;H#39;},{#39;H#39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;,#39;H#39;,#39;H#39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39;H#39;},{#39;H#39;,#39; #39;,#39;H#39;,#39;H#39;,#39; #39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;,#39;H#39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;},{#39;H#39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39;H#39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39; #39;,#39;H#39;,#39; #39;,#39;H#39;},{#39;H#39;,#39; #39;,#39;H#39;,#39;H#39;,#39;H#39;,
显示全部
相似文档