OpenGL简单实现太阳系模拟

2024-03-08 06:10

本文主要是介绍OpenGL简单实现太阳系模拟,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

#include "stdafx.h"
#include <glut.h>
#include <stdlib.h>
#include "math.h"
#include <gl\glaux.h>	// GLaux库的头文件
#pragma comment( lib, "glaux.lib")		// GLaux连接库//行星序是水星、金星、地球、火星、木星、土星、天王星、和海王星
//adam,hesper,earth,mars,jupiter,saturn,uranus,neptune
static int year = 0, day = 0,adamYear=0,hesperYear=0,marsYear=0,jupiterYear=0,saturnYear=0,uranusYear=0,neptuneYear=0,sunYear=0;
float light_angle=0;
float light_radius=8.0;
float cam_radius=7.0;
float cam_radius1;
float cam_position[3];
float cam_angle_u=0.3;
float cam_angle_v=0.3;
int state=1;
float star[2000][3];UINT g_cactus[16];	//贴图
GLUquadricObj *g_text; void lPosition();
void cPosition();
bool LoadT8(LPCWSTR filename, GLuint &texture);void init(void) 
{glClearColor (0.0, 0.0, 0.0, 0.0);lPosition();glShadeModel (GL_SMOOTH);glEnable(GL_LIGHTING);glEnable(GL_LIGHT0);glEnable(GL_DEPTH_TEST);glEnable(GL_COLOR_MATERIAL);g_text = gluNewQuadric();LPCWSTR filename=_T("sun.bmp");LoadT8(filename,g_cactus[0]);//帖图filename=_T("adam.bmp");LoadT8(filename,g_cactus[1]);//帖图filename=_T("hesper.bmp");LoadT8(filename,g_cactus[2]);//帖图filename=_T("earth.bmp");LoadT8(filename,g_cactus[3]);//帖图filename=_T("mars.bmp");LoadT8(filename,g_cactus[4]);//帖图filename=_T("jupiter.bmp");LoadT8(filename,g_cactus[5]);//帖图filename=_T("saturn.bmp");LoadT8(filename,g_cactus[6]);//帖图uranus.bmpfilename=_T("uranus.bmp");LoadT8(filename,g_cactus[7]);//帖图Neptune filename=_T("neptune.bmp");LoadT8(filename,g_cactus[8]);//帖图Neptune
}
void init_stars()
{for ( int i=0; i < 2000; i++ ){for(int j=0;j<3;j++){star[i][j]=rand()%20-10;}}
}bool LoadT8(LPCWSTR filename, GLuint &texture)//调8位贴图
{	AUX_RGBImageRec *pImage = NULL;LPCWSTR file=(LPCWSTR)filename;pImage = auxDIBImageLoad(filename);			// 装入位图		if(pImage == NULL)		return false;		// 确保位图数据已经装入glGenTextures(1, &texture);					// 生成纹理glBindTexture    (GL_TEXTURE_2D,texture);	// 捆绑纹理gluBuild2DMipmaps(GL_TEXTURE_2D,4, pImage->sizeX, pImage->sizeY,GL_RGB, GL_UNSIGNED_BYTE,pImage->data);glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR);glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR);free(pImage->data);	//释放位图占据的内存资源free(pImage);	return true;// 返回true
}void material_sun()
{GLfloat mat_specular[] = { 1.0, 1.0, 1.0, 1.0 };GLfloat mat_shininess[] = { 50.0 };GLfloat lmodel_ambient[]={1.0,0.0,0.0,1.0};GLfloat white_light[]={1.0, 1.0,1.0, 1.0};glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular);glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);glMaterialfv(GL_FRONT, GL_DIFFUSE, lmodel_ambient);glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
}void material_earth()
{GLfloat mat_specular[] = { 1.0, 1.0, 1.0, 1.0 };GLfloat mat_shininess[] = { 50.0 };GLfloat lmodel_ambient[]={0.0,1.0,0.0,1.0};GLfloat white_light[]={1.0, 1.0,1.0, 1.0};glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular);glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);glMaterialfv(GL_FRONT, GL_DIFFUSE, lmodel_ambient);glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
}void stars()
{glBegin( GL_POINTS );glColor3f( 1.0f, 1.0f, 1.0f );for ( int i=0; i < 2000; ++i ){glVertex3f( star[i][0], star[i][1], star[i][2] );}glEnd();
}void sun()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[0]);//gluSphere(g_text,0.6, 32, 32);   /* draw sun */gluQuadricTexture(g_text,GLU_TRUE);              //建立纹理坐标gluQuadricDrawStyle(g_text,GLU_FILL);            //用面填充glPopMatrix();
}void adam()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[1]);//glRotatef ((GLfloat) adamYear, 0.0, 0.0, 1.0);glTranslatef (0.8, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.13, 20, 16);    /* draw smaller planet */	glPopMatrix();
}
void hesper()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[2]);//glRotatef ((GLfloat)hesperYear, 0.0, 0.0, 1.0);glTranslatef (1.3, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.2, 20, 16);    /* draw smaller planet */glPopMatrix();
}
void earth()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[3]);//glRotatef ((GLfloat) year, 0.0, 0.0, 1.0);glTranslatef (1.8, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);//material_earth();//gluQuadricTexture(g_text,GLU_TRUE);              //建立纹理坐标//gluQuadricDrawStyle(g_text,GLU_FILL);            //用面填充gluSphere(g_text,0.16, 20, 16);    /* draw smaller planet */glPopMatrix();
}
void mars()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[4]);//glRotatef ((GLfloat)marsYear, 0.0, 0.0, 1.0);glTranslatef (2.2, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.14, 20, 16);    /* draw smaller planet */	glPopMatrix();
}
void jupiter()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[5]);//glRotatef ((GLfloat)jupiterYear, 0.0, 0.0, 1.0);glTranslatef (2.7, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.22, 20, 16);    /* draw smaller planet */	glPopMatrix();
}
void park()
{glBegin(GL_TRIANGLE_FAN);glVertex3f(0,0,0);for(int i=0;i<=380;i+=20){float p=(float)(i*3.14/180);glVertex3f((float)sin(p)*0.22,(float)cos(p)*0.22,0.0f);}glEnd();
}
void saturn()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[6]);//glRotatef ((GLfloat) saturnYear, 0.0, 0.0, 1.0);glTranslatef (3.15, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.14, 20, 16);    /* draw smaller planet */glRotatef (0.2, 1.0, 0.0, 0.0);//auxSolidCylinder(0.15,0.01)park();glPopMatrix();
}void uranus()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[7]);//glRotatef ((GLfloat) uranusYear, 0.0, 0.0, 1.0);glTranslatef (3.55, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.12, 20, 16);    /* draw smaller planet */	glPopMatrix();
}
void neptune()
{glPushMatrix();glBindTexture(GL_TEXTURE_2D, g_cactus[8]);//glRotatef ((GLfloat) neptuneYear, 0.0, 0.0, 1.0);glTranslatef (3.8, 0.0, 0.0);glRotatef ((GLfloat) day, 0.0, 0.0, 1.0);gluSphere(g_text,0.10, 20, 16);    /* draw smaller planet */	glPopMatrix();
}
void lPosition()
{float y,z;y=light_radius*cos(light_angle);z=light_radius*sin(light_angle);float light_position[] = { 3.0,y,z, 0.0 };glLightfv(GL_LIGHT0, GL_POSITION, light_position);
}
void display(void)
{lPosition();///glClear (GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);glColor3f (1.0, 1.0, 1.0);glTexGeni(GL_S,GL_TEXTURE_GEN_MODE,GL_OBJECT_LINEAR);			//Texturing Contour Anchored To The ObjectglTexGeni(GL_T,GL_TEXTURE_GEN_MODE,GL_OBJECT_LINEAR);			//Texturing Contour Anchored To The Object//glEnable(GL_TEXTURE_GEN_S);										//Auto Texture Generation//glEnable(GL_TEXTURE_GEN_T);										//Auto Texture GenerationglEnable(GL_TEXTURE_2D);///stars();//glBindTexture(GL_TEXTURE_2D, g_cactus[1]);//gluSphere(g_text,0.4,48,48);stars();sun();adam();hesper();earth();mars();jupiter();saturn();uranus();neptune();///glDisable(GL_TEXTURE_2D);		//glDisable(GL_TEXTURE_GEN_S);										//Auto Texture Generation//glDisable(GL_TEXTURE_GEN_T);glutSwapBuffers();
}void cPosition()
{	cam_radius1=cam_radius*cos(cam_angle_v);cam_position[0]=cam_radius1*cos(cam_angle_u);cam_position[1]=cam_radius1*sin(cam_angle_u);cam_position[2]=cam_radius*sin(cam_angle_v);glLoadIdentity();gluLookAt(cam_position[0],cam_position[1],cam_position[2], 0.0, 0.0, 0.0, 0.0, 0.0, 1.0);
}void reshape (int w, int h)
{glViewport (0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode (GL_PROJECTION);glLoadIdentity ();gluPerspective(60.0, (GLfloat) w/(GLfloat) h, 1.0, 20.0);glMatrixMode(GL_MODELVIEW);cPosition();
}void move()
{//adamYear=0,hesperYear=0,marsYear=0,jupiterYear=0,saturnYear=0,uranusYear=0,neptuneYear=0;adamYear=(adamYear+12)%360;hesperYear=(hesperYear+20)%360;year=(year+8)%360;marsYear=(marsYear+6)%360;jupiterYear=(jupiterYear+5)%360;saturnYear=(saturnYear+4)%360;uranusYear=(uranusYear+3)%360;neptuneYear=(neptuneYear+1)%360;day = (day + 30) % 360;
}
void move1()
{//adamYear=0,hesperYear=0,marsYear=0,jupiterYear=0,saturnYear=0,uranusYear=0,neptuneYear=0;adamYear=(adamYear-12)%360;hesperYear=(hesperYear-20)%360;year=(year-8)%360;marsYear=(marsYear-6)%360;jupiterYear=(jupiterYear-5)%360;saturnYear=(saturnYear-4)%360;uranusYear=(uranusYear-3)%360;neptuneYear=(neptuneYear-1)%360;day = (day - 30) % 360;
}
void keyboard (unsigned char key, int x, int y)
{switch (key) {case 'f':day = (day + 10) % 360;glutPostRedisplay();break;case 'F':day = (day - 10) % 360;glutPostRedisplay();break;case 'y':year = (year + 5) % 360;glutPostRedisplay();break;case 'Y':year = (year - 5) % 360;glutPostRedisplay();break;case 'l':light_angle+=2.0/90;// if(light_position1>1.0)light_position1=0.0;glutPostRedisplay();break;case 'L':light_angle-=2.0/90;// if(light_position1>1.0)light_position1=0.0;glutPostRedisplay();break;case 'k':cam_radius+=0.2;cPosition();glutPostRedisplay();/*glLoadIdentity();camera_position+=0.1;gluLookAt(camera_position,camera_position, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);*/glutPostRedisplay();break;case 'K':cam_radius-=0.2;cPosition();glutPostRedisplay();/*glLoadIdentity();camera_position-=0.1;gluLookAt(camera_position,camera_position, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);*/glutPostRedisplay();break;case'w':cam_angle_v+=1.0/30;if(cam_angle_v>1.0){cam_angle_v=1.0;}cPosition();glutPostRedisplay();break;case's':cam_angle_v-=1.0/30;if(cam_angle_v<-1.0){cam_angle_v=-1.0;}cPosition();glutPostRedisplay();break;case'a':cam_angle_u+=1.0/30;cPosition();glutPostRedisplay();break;case'd':cam_angle_u-=1.0/30;cPosition();glutPostRedisplay();break;case'r':cam_radius=5.0;cam_angle_u=0;cam_angle_v=0;cPosition();glutPostRedisplay();break;case'q':move();glutPostRedisplay();break;case'Q':move1();glutPostRedisplay();break;case 27:exit(0);break;default:break;}
}int main(int argc, char** argv)
{glutInit(&argc, argv);glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);glutInitWindowSize (800, 600); glutInitWindowPosition (100, 100);glutCreateWindow (argv[0]);init ();init_stars();glutDisplayFunc(display); glutReshapeFunc(reshape);glutKeyboardFunc(keyboard);glutMainLoop();return 0;
}


原文链接:http://burningcl.iteye.com/blog/699165

这篇关于OpenGL简单实现太阳系模拟的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/786261

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount