太阳系:Solar System

以太阳(Sun)为中心,由内到外分别是:

水星(Mercury)

金星(Venus)

地球(Earth)

火星(Mars)

木星(Jupiter)

土星(Saturn)

天王星(Uranus)

海王星(Neptune)

冥王星(Pluto)

原来是太阳系九大行星,但是最后一个冥王星被除名,就变成八大行星了~

 main.cpp 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
 
//#include <windows.h>
#include <afx.h>
#include <gl/gl.h>
#include <gl/glu.h>
#include <gl/glut.h>
#include <math.h>

#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")

#define glRGB(x, y, z)  glColor3ub((GLubyte)x, (GLubyte)y, (GLubyte)z)

// 太阳
           // 水星
           // 金星
           // 地球
           // 火星
           // 木星
           // 土星
           // 天王星
           // 海王星
          // 冥王星

GLfloat fAspect;

// Called to draw scene
void RenderScene(GLenum mode)
{
    //此处可加gluLookAt()函数

// Save the matrix state and do the rotations
    glMatrixMode(GL_MODELVIEW);
    glPushMatrix();

// Translate the whole scene out and into view
.0f);

// Initialize the names stack
    glInitNames();
    glPushName();

// Set material color, Yellow
    // Draw Sun
);
    if (mode == GL_SELECT)
        glLoadName(SUN);
    glutSolidSphere();

// Draw Mercury
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(MERCURY);
    glutSolidSphere();
    glPopMatrix();

// Draw Venus
    glPushMatrix();
    glRGB();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(VENUS);
    glutSolidSphere();
    glPopMatrix();

// Draw the Earth
    glPushMatrix();
    glRGB();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(EARTH);
    glutSolidSphere();
    glPopMatrix();

// Draw Mars
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(MARS);
    glutSolidSphere();
    glPopMatrix();

// Draw Jupiter
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(JUPITER);
    glutSolidSphere();
    glPopMatrix();

// Draw Saturn
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(SATURN);
    glutSolidSphere();
    glPopMatrix();

// Draw Uranus
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(URANUS);
    glutSolidSphere();
    glPopMatrix();

// Draw Neptune
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(NEPTUNE);
    glutSolidSphere();
    glPopMatrix();

// Draw Pluto
);
    glPushMatrix();
    glTranslatef(.0f);
    if (mode == GL_SELECT)
        glLoadName(PLUTO);
    glutSolidSphere();
    glPopMatrix();

// Restore the matrix state
    glPopMatrix();
    // Modelview matrix
    glutSwapBuffers();
    // redraw...
    glutPostRedisplay();
}

void Display(void)
{
    // Clear the window with current clearing color
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    RenderScene(GL_RENDER);
}

// Present the information on which planet/sun was selected and displayed
void ProcessPlanet(GLuint id)
{
    switch(id)
    {
    case SUN:
        MessageBox(NULL, _T("You clicked on the Sun!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case MERCURY:
        MessageBox(NULL, _T("You clicked on Mercury!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case VENUS:
        MessageBox(NULL, _T("You clicked on Venus!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case EARTH:
        MessageBox(NULL, _T("You clicked on Earth!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case MARS:
        MessageBox(NULL, _T("You clicked on Mars!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case JUPITER:
        MessageBox(NULL, _T("You clicked on Jupiter!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case SATURN:
        MessageBox(NULL, _T("You clicked on Saturn!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case URANUS:
        MessageBox(NULL, _T("You clicked on Uranus!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case NEPTUNE:
        MessageBox(NULL, _T("You clicked on Neptune!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

case PLUTO:
        MessageBox(NULL, _T("You clicked on Pluto!"), _T("Info"), MB_OK | MB_ICONEXCLAMATION);
        break;

default:
        MessageBox(NULL, _T("Nothing was clicked on!"), _T("Error"), MB_OK | MB_ICONEXCLAMATION);
        break;
    }
}

// Process the selection, which is triggered by a right mouse
// click at (xPos, yPos).

void ProcessSelection(int xPos, int yPos)
{
    // Space for selection buffer
    GLuint selectBuff[BUFFER_LENGTH];

// Hit counter and viewport storeage
];

// Setup selection buffer
    glSelectBuffer(BUFFER_LENGTH, selectBuff);

// Get the viewport
    glGetIntegerv(GL_VIEWPORT, viewport);

// Switch to projection and save the matrix
    glMatrixMode(GL_PROJECTION);
    glPushMatrix();

// Change render mode
    glRenderMode(GL_SELECT);

// Establish new clipping volume to be unit cube around
    // mouse cursor point (xPos, yPos) and extending two pixels
    // in the vertical and horzontal direction
    glLoadIdentity();
    gluPickMatrix(xPos, viewport[, viewport);

// Apply perspective matrix
);

// Draw the scene
    RenderScene(GL_SELECT);

// Collect the hits
    hits = glRenderMode(GL_RENDER);

// If a single hit occured, display the info.
)
    {
        ];
        ];

; i < hits ; i++)
        {
            ] < (GLuint)depth) //获取深度最小的物体(selectBuff是按照ID从小到大排列的)
            {
                choose = selectBuff[i * ];
                depth  = selectBuff[i * ];
            }
        }
        ProcessPlanet(choose);
    }

// Restore the projection matrix
    glMatrixMode(GL_PROJECTION);
    glPopMatrix();

// Go back to modelview for normal rendering
    glMatrixMode(GL_MODELVIEW);
}

void init(void)
{
    glClearColor();
    glEnable(GL_DEPTH_TEST);
    glShadeModel(GL_FLAT);
    glDepthRange();  /* The default z mapping */
}

// Process the mouse click
void MouseCallback(int button, int state, int x, int y)
{
    if(button == GLUT_LEFT_BUTTON && state == GLUT_DOWN)
        ProcessSelection(x, y);
}

void ChangeSize(int w, int h)
{
    // Prevent a divide by zero
)
        h = ;

// Set Viewport to window dimensions
, w, h);

// Calculate aspect ratio of the window
    fAspect = (GLfloat)w / (GLfloat)h;

// Set the perspective coordinate system
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();

// Field of view of 45 degrees, near and far planes 1.0 and 425
);

// Modelview matrix reset
    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();
}

int main(int argc, char *argv[])
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
    glutInitWindowSize();
    init();
    glutCreateWindow("Pick a Planet");
    glutReshapeFunc(ChangeSize);
    glutMouseFunc(MouseCallback);
    glutDisplayFunc(Display);

glutMainLoop();

;
}

OpenGL 太阳系行星拾取例子(GL_SELECT) VS2008 + glut实现的更多相关文章

  1. Modern OpenGL用Shader拾取VBO内单一图元的思路和实现

    Modern OpenGL用Shader拾取VBO内单一图元的思路和实现 什么意思? 拾取 最简单的理解拾取的方式大概是到(http://www.yakergong.net/nehe/course/t ...

  2. Modern OpenGL用Shader拾取VBO内单一图元的思路和实现(3)

    Modern OpenGL用Shader拾取VBO内单一图元的思路和实现(3) 到上一篇为止,拾取一个VBO里的单个图元的问题已经彻底解决了.那么来看下一个问题:一个场景里可能会有多个VBO,此时每个 ...

  3. 使用css3的动画模拟太阳系行星公转

    本文介绍使用css3的animation画一个太阳系行星公转的动画,再加以改进,讨论如何画椭圆的运行轨迹.然后分析京东和人人网使用animation的实际案例,最后结合css3的clip-path做一 ...

  4. OpenGL中的拾取模式( Picking)

    1. Opengl中的渲染模式有三种:(1)渲染模式,默认的模式:(2)选择模式, (3)反馈模式.如下 GLint glRenderMode(GLenum mode) mode可以选取以下三种模式之 ...

  5. html+ccs3太阳系行星运转动画之土星有个环,地球有颗小卫星

    在上一篇<html+ccs3太阳系行星运转动画>中实现了太阳系八大行星的基本运转动画. 太阳系又何止这些内容,为丰富一下动画,接下来增加“土星环”和“月球”来充盈太阳系动画. 下面是充盈后 ...

  6. Modern OpenGL用Shader拾取VBO内单一图元的思路和实现(2)

    Modern OpenGL用Shader拾取VBO内单一图元的思路和实现(2) 上一篇里介绍了Color-Coded Picking的思路和最基本的实现.在处理GL_POINTS时已经没有问题,但是处 ...

  7. three.js模拟实现太阳系行星体系

    概况如下: 1.SphereGeometry实现自转的太阳: 2.RingGeometry实现太阳系星系的公转轨道: 3.ImageUtils加载球体和各行星贴图: 4.canvas中createRa ...

  8. html+ccs3太阳系行星运转动画

    做一个太阳系八大行星的运转动画,不包括行星的卫星,所有行星围绕太阳公转,行星采用纯色,暂时没有自转. 效果静态图: 动画中包括:太阳及各行星,运行轨道,行星公转动画. 先画好草图,设计好大小和位置,根 ...

  9. OpenGL红宝书例子2.2 uniform变量的使用

    1. 简单介绍一下OpenGL可编程渲染管线的流程 顶点着色 --> 细分着色 --> 几何着色 --> 片元着色 --> 计算着色 一般我们主要参与的阶段是顶点着色和片元着色 ...

随机推荐

  1. Linux中ls -l(ll)返回结果中的文件访问权限-rw-r--rw-

    linux文件访问权限(像rw-r--rw-是什么意思)   Linux的文件访问权限分为 读.写.执行三种 r:可读(4) w:可写(2)对目录来说则可新建文件 x:可执行(1)对目录来说则可进入该 ...

  2. 解决wsl不能安装z.sh问题

    z.sh是韦大很推崇的类似autojump的bash插件,能够很方便的寻找目录,然而wsl下不能直接使用,解决方法在其github仓库(z)的issue中找到: Reproduce it at Mic ...

  3. C++ 代码格式化工具Astyle

    1.下载Asyle程序. win版本:https://sourceforge.net/projects/astyle/ 2.将bin/AStyle.exe拷到源码目录中,在命令行终端执行. AStyl ...

  4. ProxySQL

    ProxySQL   http://www.proxysql.com/

  5. 机器学习笔记(4):多类逻辑回归-使用gluton

    接上一篇机器学习笔记(3):多类逻辑回归继续,这次改用gluton来实现关键处理,原文见这里 ,代码如下: import matplotlib.pyplot as plt import mxnet a ...

  6. 总结&#183;展望

    学了算法也有半年了.也是学期末,确实是该总结了.半年来说不上多努力,毕竟不如高中那时候早晨5点起晚上12点睡,但也确实学到不少东西(尽管眼下来说根本用不到并且我也不确定以为会不会去用.毕竟专业放在那里 ...

  7. .Net Core URL编码和解码

    一.URL说明 .Net Core中http 的常用操作封装在 HttpUtility 中 命名空间 using System.Web; // // 摘要: // Provides methods f ...

  8. 《Unix&Linux大学教程》学习笔记七:进程与作业控制

    1:进程:一个内存中的程序+程序所需数据+管理程序的各种状态信息. 2:进程由内核进行管理,内核使用调度器,给予进程一个时间片来运行,然后切换到下一个进程. 3:进程分叉 fork :创建一个子进程 ...

  9. 【SqlServer】SqlServer中的更新锁(UPDLOCK)

    UPDLOCK.UPDLOCK 的优点是允许您读取数据(不阻塞其它事务)并在以后更新数据,同时确保自从上次读取数据后数据没有被更改.当我们用UPDLOCK来读取记录时可以对取到的记录加上更新锁,从而加 ...

  10. android 获得View的高度

      在一个activity中有一个textview,设置字数不同,如何能在打开这个activity时就及时获得这个textview在activity的高度,有利于我对textview的高度进行设置. ...